out folder

This commit is contained in:
2026-02-14 12:43:16 +01:00
parent 605c1d75ef
commit cdc1e5439c
27 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
/target /target
src/target src/target
out *.svg
*.d

BIN
out/chladni_1_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
out/chladni_1_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 KiB

BIN
out/chladni_1_3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 KiB

BIN
out/chladni_1_4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 KiB

BIN
out/chladni_1_5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 KiB

BIN
out/chladni_2_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 KiB

BIN
out/chladni_2_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
out/chladni_2_3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 255 KiB

BIN
out/chladni_2_4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

BIN
out/chladni_2_5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 325 KiB

BIN
out/chladni_3_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 KiB

BIN
out/chladni_3_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 255 KiB

BIN
out/chladni_3_3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
out/chladni_3_4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 KiB

BIN
out/chladni_3_5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 KiB

BIN
out/chladni_4_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 KiB

BIN
out/chladni_4_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

BIN
out/chladni_4_3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 KiB

BIN
out/chladni_4_4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
out/chladni_4_5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

BIN
out/chladni_5_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 KiB

BIN
out/chladni_5_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 325 KiB

BIN
out/chladni_5_3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 KiB

BIN
out/chladni_5_4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

BIN
out/chladni_5_5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -19,7 +19,7 @@ fn generate_png(n: u32, m: u32, width: u32, height: u32) {
*pixel = Rgb([brigh, brigh, brigh]); *pixel = Rgb([brigh, brigh, brigh]);
} }
let filename = format!("chladni_{}_{}.png", n, m); let filename = format!("out/chladni_{}_{}.png", n, m);
img.save(&filename).unwrap(); img.save(&filename).unwrap();
println!("{}", filename); println!("{}", filename);
} }