shell based surface model

This commit is contained in:
Thomas Krijnen
2020-06-11 20:44:29 +02:00
parent 0fa05f7339
commit 185b4ef9fa
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -224,6 +224,10 @@ taxonomy::item* mapping::map_impl(const IfcSchema::IfcFaceBasedSurfaceModel* ins
return map_to_collection(this, inst->FbsmFaces());
}
taxonomy::item* mapping::map_impl(const IfcSchema::IfcShellBasedSurfaceModel* inst) {
return map_to_collection(this, inst->SbsmBoundary());
}
taxonomy::item* mapping::map_impl(const IfcSchema::IfcManifoldSolidBrep* inst) {
// @todo voids
return map(inst->Outer());
+1 -1
View File
@@ -26,7 +26,7 @@
BIND(IfcProduct);
// BIND(IfcShellBasedSurfaceModel);
BIND(IfcShellBasedSurfaceModel);
BIND(IfcFaceBasedSurfaceModel);
BIND(IfcRepresentation);
BIND(IfcMappedItem);