Skip to content

Commit d73a054

Browse files
committed
Update changelog
1 parent 841563b commit d73a054

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,18 @@ Change Log -- Ray Tracing in One Weekend
44
# v3.2.0 (in progress)
55

66
### Common
7+
- Bug: Found a bug in book 3 source `isotropic::scatter()` method. Commented out, using default
8+
(as it was previously). (#669)
79
- Removed: now that the code handles ray-surface intersection from either side, we no longer need
810
the `flip_face` class, so we've deleted it from the text and from the code (#482, #270)
911
- Change: Added header guards to the text of all three books whenever a new header file was
1012
introduced
13+
- Change: Added `override` keywords throughout. This keyword marks a subclass method as one that
14+
is intended to override a superclass method. It makes the code a bit easier to understand, and
15+
ensures that your function is actually overriding the method you think it is. Which is good,
16+
because it already caught an existing bug in _The Rest of Your Life_ source. This change
17+
includes commenting out the book 3 `isotropic::scatter()` method, which was accidentally ignored
18+
anyway. (#639, #669)
1119

1220
### _In One Weekend_
1321
- Change: Updated all rendered images except for 1.13, 1.14 (#179, #547, #548, #549, #550, #551,

0 commit comments

Comments
 (0)