Closed
Description
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));