Skip to content

Commit 40f13bb

Browse files
committed
Add missing parenthesis in book 3 listing 10
Resolves #603
1 parent da4ebe9 commit 40f13bb

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Change Log -- Ray Tracing in One Weekend
33

44
# v3.1.2 (in progress)
55

6+
### _The Rest of Your Life_
7+
- Fix: missing closing parenthesis in listing 10 (#603)
8+
69

710
----------------------------------------------------------------------------------------------------
811
# v3.1.1 (2020-05-16)

books/RayTracingInOneWeekend.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Peter Shirley
88
edited by Steve Hollasch and Trevor David Black
99
<br>
10-
Version 3.1.1, 2020-05-16
10+
Version 3.1.2-alpha, 2020-XX-XX
1111
<br>
1212
Copyright 2018-2020 Peter Shirley. All rights reserved.
1313

books/RayTracingTheNextWeek.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Peter Shirley
88
edited by Steve Hollasch and Trevor David Black
99
<br>
10-
Version 3.1.1, 2020-05-16
10+
Version 3.1.2-alpha, 2020-XX-XX
1111
<br>
1212
Copyright 2018-2020 Peter Shirley. All rights reserved.
1313

books/RayTracingTheRestOfYourLife.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Peter Shirley
88
edited by Steve Hollasch and Trevor David Black
99
<br>
10-
Version 3.1.1, 2020-05-16
10+
Version 3.1.2-alpha, 2020-XX-XX
1111
<br>
1212
Copyright 2018-2020 Peter Shirley. All rights reserved.
1313

@@ -775,7 +775,7 @@
775775

776776
shared_ptr<hittable> box2 = make_shared<box>(point3(0,0,0), point3(165,165,165), white);
777777
box2 = make_shared<rotate_y>(box2, -18);
778-
box2 = make_shared<translate>(box2, vec3(130,0,65);
778+
box2 = make_shared<translate>(box2, vec3(130,0,65));
779779
world.add(box2);
780780

781781
point3 lookfrom(278, 278, -800);

0 commit comments

Comments
 (0)