Skip to content

Commit 5aee044

Browse files
committed
Remove ground sphere
1 parent e3a6043 commit 5aee044

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BVH/main.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ hittable_list random_scene() {
4545
hittable_list world;
4646

4747
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));
48+
// world.add(make_shared<sphere>(point3(0,-1000,0), 1000, ground_material));
4949

5050
for (int a = -11; a < 11; a++) {
5151
for (int b = -11; b < 11; b++) {

0 commit comments

Comments
 (0)