Minor formatting improvements

This commit is contained in:
Thomas Krijnen
2024-07-21 02:40:56 +02:00
parent e88bd3af80
commit 3bbe598dff
+2
View File
@@ -605,10 +605,12 @@ void ifcopenshell::geometry::taxonomy::line::print(std::ostream& o, int indent)
void ifcopenshell::geometry::taxonomy::circle::print(std::ostream& o, int indent) const {
print_impl(o, kind_to_string(kind()), indent);
o << std::string(indent + 4, ' ') << "radius " << radius << std::endl;
}
void ifcopenshell::geometry::taxonomy::ellipse::print(std::ostream& o, int indent) const {
print_impl(o, kind_to_string(kind()), indent);
o << std::string(indent + 4, ' ') << "radii " << radius << " " << radius2 << std::endl;
}
void ifcopenshell::geometry::taxonomy::trimmed_curve::print(std::ostream& o, int indent) const {