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:
@@ -25,10 +25,10 @@ fn main() {
|
|||||||
// image
|
// image
|
||||||
let aspect_ratio = 3.0 / 2.0;
|
let aspect_ratio = 3.0 / 2.0;
|
||||||
let image = (
|
let image = (
|
||||||
1920,
|
400,
|
||||||
(1920.0 / aspect_ratio) as i32
|
(400.0 / aspect_ratio) as i32
|
||||||
);
|
);
|
||||||
let samples_per_pixel = 10;
|
let samples_per_pixel: u32 = 10;
|
||||||
let max_depth = 50;
|
let max_depth = 50;
|
||||||
|
|
||||||
// random generator
|
// random generator
|
||||||
|
|||||||
Reference in New Issue
Block a user