Skip to content

Commit 72f38db

Browse files
committed
Add the missing rect to listing 54
Resolves #479
1 parent 9dc88c2 commit 72f38db

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

books/RayTracingTheNextWeek.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2214,7 +2214,8 @@
22142214
objects.add(make_shared<yz_rect>(0, 555, 0, 555, 0, red));
22152215
objects.add(make_shared<xz_rect>(213, 343, 227, 332, 554, light));
22162216
objects.add(make_shared<xz_rect>(0, 555, 0, 555, 0, white));
2217-
objects.add(make_shared<xy_rect>(0, 555, 0, 555, 555, white));
2217+
objects.add(make_shared<xz_rect>(0, 555, 0, 555, 555, white));
2218+
objects.add(make_shared<xy_rect>(0, 555, 0, 555, 555, white));
22182219

22192220
return objects;
22202221
}

0 commit comments

Comments
 (0)