We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The listing 10 in the book The Rest of Your Life lacks the last parentheses in the translate constructor.
shared_ptr<hittable> box2 = make_shared<box>(point3(0,0,0), point3(165,165,165), white); box2 = make_shared<rotate_y>(box2, -18); box2 = make_shared<translate>(box2, vec3(130,0,65);
should be corrected to
box2 = make_shared<translate>(box2, vec3(130,0,65));
The text was updated successfully, but these errors were encountered:
Add missing parenthesis in book 3 listing 10
40f13bb
Resolves #603
Fixed in dev-patch branch for next patch/minor release.
dev-patch
Sorry, something went wrong.
hollasch
No branches or pull requests
The listing 10 in the book The Rest of Your Life lacks the last parentheses in the translate constructor.
should be corrected to
The text was updated successfully, but these errors were encountered: