We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3a6043 commit 5aee044Copy full SHA for 5aee044
src/BVH/main.cc
@@ -45,7 +45,7 @@ hittable_list random_scene() {
45
hittable_list world;
46
47
auto ground_material = make_shared<lambertian>(color(0.5, 0.5, 0.5));
48
- world.add(make_shared<sphere>(point3(0,-1000,0), 1000, ground_material));
+ // world.add(make_shared<sphere>(point3(0,-1000,0), 1000, ground_material));
49
50
for (int a = -11; a < 11; a++) {
51
for (int b = -11; b < 11; b++) {
0 commit comments