Skip to content

The Rest: Listing 10 missing parentheses in translate constructor #603

Closed
@D-K-E

Description

@D-K-E

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

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions