diff --git a/.gitignore b/.gitignore index 5608b1e..4161afe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /target src/target -out +*.svg +*.d diff --git a/out/chladni_1_1.png b/out/chladni_1_1.png new file mode 100644 index 0000000..1f2704a Binary files /dev/null and b/out/chladni_1_1.png differ diff --git a/out/chladni_1_2.png b/out/chladni_1_2.png new file mode 100644 index 0000000..f6e37cf Binary files /dev/null and b/out/chladni_1_2.png differ diff --git a/out/chladni_1_3.png b/out/chladni_1_3.png new file mode 100644 index 0000000..04adc4a Binary files /dev/null and b/out/chladni_1_3.png differ diff --git a/out/chladni_1_4.png b/out/chladni_1_4.png new file mode 100644 index 0000000..750c040 Binary files /dev/null and b/out/chladni_1_4.png differ diff --git a/out/chladni_1_5.png b/out/chladni_1_5.png new file mode 100644 index 0000000..0ab7093 Binary files /dev/null and b/out/chladni_1_5.png differ diff --git a/out/chladni_2_1.png b/out/chladni_2_1.png new file mode 100644 index 0000000..f6e37cf Binary files /dev/null and b/out/chladni_2_1.png differ diff --git a/out/chladni_2_2.png b/out/chladni_2_2.png new file mode 100644 index 0000000..1f2704a Binary files /dev/null and b/out/chladni_2_2.png differ diff --git a/out/chladni_2_3.png b/out/chladni_2_3.png new file mode 100644 index 0000000..6ef58c1 Binary files /dev/null and b/out/chladni_2_3.png differ diff --git a/out/chladni_2_4.png b/out/chladni_2_4.png new file mode 100644 index 0000000..c4e70a5 Binary files /dev/null and b/out/chladni_2_4.png differ diff --git a/out/chladni_2_5.png b/out/chladni_2_5.png new file mode 100644 index 0000000..e23830c Binary files /dev/null and b/out/chladni_2_5.png differ diff --git a/out/chladni_3_1.png b/out/chladni_3_1.png new file mode 100644 index 0000000..04adc4a Binary files /dev/null and b/out/chladni_3_1.png differ diff --git a/out/chladni_3_2.png b/out/chladni_3_2.png new file mode 100644 index 0000000..6ef58c1 Binary files /dev/null and b/out/chladni_3_2.png differ diff --git a/out/chladni_3_3.png b/out/chladni_3_3.png new file mode 100644 index 0000000..1f2704a Binary files /dev/null and b/out/chladni_3_3.png differ diff --git a/out/chladni_3_4.png b/out/chladni_3_4.png new file mode 100644 index 0000000..e44c491 Binary files /dev/null and b/out/chladni_3_4.png differ diff --git a/out/chladni_3_5.png b/out/chladni_3_5.png new file mode 100644 index 0000000..4d420c2 Binary files /dev/null and b/out/chladni_3_5.png differ diff --git a/out/chladni_4_1.png b/out/chladni_4_1.png new file mode 100644 index 0000000..750c040 Binary files /dev/null and b/out/chladni_4_1.png differ diff --git a/out/chladni_4_2.png b/out/chladni_4_2.png new file mode 100644 index 0000000..c4e70a5 Binary files /dev/null and b/out/chladni_4_2.png differ diff --git a/out/chladni_4_3.png b/out/chladni_4_3.png new file mode 100644 index 0000000..e44c491 Binary files /dev/null and b/out/chladni_4_3.png differ diff --git a/out/chladni_4_4.png b/out/chladni_4_4.png new file mode 100644 index 0000000..1f2704a Binary files /dev/null and b/out/chladni_4_4.png differ diff --git a/out/chladni_4_5.png b/out/chladni_4_5.png new file mode 100644 index 0000000..4ac8935 Binary files /dev/null and b/out/chladni_4_5.png differ diff --git a/out/chladni_5_1.png b/out/chladni_5_1.png new file mode 100644 index 0000000..0ab7093 Binary files /dev/null and b/out/chladni_5_1.png differ diff --git a/out/chladni_5_2.png b/out/chladni_5_2.png new file mode 100644 index 0000000..e23830c Binary files /dev/null and b/out/chladni_5_2.png differ diff --git a/out/chladni_5_3.png b/out/chladni_5_3.png new file mode 100644 index 0000000..4d420c2 Binary files /dev/null and b/out/chladni_5_3.png differ diff --git a/out/chladni_5_4.png b/out/chladni_5_4.png new file mode 100644 index 0000000..4ac8935 Binary files /dev/null and b/out/chladni_5_4.png differ diff --git a/out/chladni_5_5.png b/out/chladni_5_5.png new file mode 100644 index 0000000..1f2704a Binary files /dev/null and b/out/chladni_5_5.png differ diff --git a/src/main.rs b/src/main.rs index 63023cc..7b58587 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,7 @@ fn generate_png(n: u32, m: u32, width: u32, height: u32) { *pixel = Rgb([brigh, brigh, brigh]); } - let filename = format!("chladni_{}_{}.png", n, m); + let filename = format!("out/chladni_{}_{}.png", n, m); img.save(&filename).unwrap(); println!("{}", filename); }