Skip to content

Commit

Permalink
Fix Box::print
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh authored Dec 19, 2023
1 parent ec17adf commit 83c2bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shapes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ void Cone::print(std::ostream& out) const

void Box::print(std::ostream& out) const
{
out << "Box[x=length=" << size[0] << ", y=width=" << size[1] << "z=height=" << size[2] << "]" << std::endl;
out << "Box[x=length=" << size[0] << ", y=width=" << size[1] << ", z=height=" << size[2] << "]" << std::endl;
}

void Mesh::print(std::ostream& out) const
Expand Down

0 comments on commit 83c2bf3

Please sign in to comment.