Skip to content

Commit

Permalink
Change seed
Browse files Browse the repository at this point in the history
  • Loading branch information
Zentrik committed Sep 16, 2023
1 parent ee16bfb commit 2779da7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c++/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ colour ray_colour(ray r, const HittableList& world, int depth, RNG& rng) {

HittableList random_scene() {
HittableList world;
RNG rng{1324};
RNG rng{0};

world.add(Sphere(point3(0, -1000, 0), 1000, Material::Lambertian(colour(0.5, 0.5, 0.5))));

Expand Down

0 comments on commit 2779da7

Please sign in to comment.