chore: Turn down the image resolution for testing

For some reason I feel it necessary to make this its own commit. I might
be for real losing my mind.
This commit is contained in:
2023-06-23 19:45:57 -05:00
parent 086a2d01ee
commit 6dd6befed0

View File

@@ -25,10 +25,10 @@ fn main() {
// image
let aspect_ratio = 3.0 / 2.0;
let image = (
1920,
(1920.0 / aspect_ratio) as i32
400,
(400.0 / aspect_ratio) as i32
);
let samples_per_pixel = 10;
let samples_per_pixel: u32 = 10;
let max_depth = 50;
// random generator