| 576 | } |
| 577 | |
| 578 | inline void DumpIfcGeometryToPathThree(const webifc::geometry::IfcGeometry& geom, std::string path, double inputScale) |
| 579 | { |
| 580 | size_t offset = 0; |
| 581 | std::ofstream out(path.c_str()); |
| 582 | glm::dmat4 mat(1); |
| 583 | out << ToObjThree(geom, offset, mat, inputScale); |
| 584 | } |
| 585 | |
| 586 | inline std::string ToObjThree(webifc::geometry::IfcGeometry& geom, size_t& offset, glm::dmat4 transform = glm::dmat4(1)) |
| 587 | { |
nothing calls this directly
no test coverage detected