| 51 | } |
| 52 | |
| 53 | void SpecificLoadTest(webifc::parsing::IfcLoader &loader, webifc::geometry::IfcGeometryProcessor &geometryLoader, uint64_t num) |
| 54 | { |
| 55 | auto walls = loader.GetExpressIDsWithType(webifc::schema::IFCSLAB); |
| 56 | |
| 57 | bool writeFiles = true; |
| 58 | |
| 59 | auto mesh = geometryLoader.GetMesh(num); |
| 60 | |
| 61 | if (writeFiles) |
| 62 | { |
| 63 | DumpMesh(mesh, geometryLoader, "TEST.obj"); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | std::vector<webifc::geometry::IfcAlignment> GetAlignments(webifc::parsing::IfcLoader &loader, webifc::geometry::IfcGeometryProcessor &geometryLoader) |
| 68 | { |
no test coverage detected