| 4 | #include <iomanip> |
| 5 | |
| 6 | IfcGeom::Representation::Triangulation * IfcGeom::ConversionResultShape::Triangulate(const ifcopenshell::geometry::Settings& settings) const |
| 7 | { |
| 8 | auto t = IfcGeom::Representation::Triangulation::empty(settings); |
| 9 | static ifcopenshell::geometry::taxonomy::matrix4 iden; |
| 10 | Triangulate(settings, iden, t, -1, -1); |
| 11 | return t; |
| 12 | } |
| 13 | |
| 14 | using namespace ifcopenshell::geometry::taxonomy; |
| 15 |
no test coverage detected