Skip to content

Commit 20a870e

Browse files
armansitohollasch
authored andcommitted
Fix missing semicolon in Book 2 listing 68
Resolves #1262
1 parent 174204f commit 20a870e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

books/RayTracingTheNextWeek.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3676,7 +3676,7 @@
36763676
p[2] = -sin_theta*rec.p[0] + cos_theta*rec.p[2];
36773677

36783678
// Change the normal from object space to world space
3679-
auto normal = rec.normal
3679+
auto normal = rec.normal;
36803680
normal[0] = cos_theta*rec.normal[0] + sin_theta*rec.normal[2];
36813681
normal[2] = -sin_theta*rec.normal[0] + cos_theta*rec.normal[2];
36823682

0 commit comments

Comments
 (0)