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

View File

@ -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);
}