closed shell; placements; faceset_helper

This commit is contained in:
Thomas Krijnen
2019-08-28 09:54:20 +02:00
parent 3bfe3b9ab5
commit 64ee3e9af3
6 changed files with 66 additions and 43 deletions
+3 -1
View File
@@ -163,7 +163,9 @@ taxonomy::item* mapping::map_impl(const IfcSchema::IfcFaceBasedSurfaceModel* ins
}
taxonomy::item* mapping::map_impl(const IfcSchema::IfcConnectedFaceSet* inst) {
return map_to_collection<taxonomy::shell>(this, inst->CfsFaces());
auto shell = map_to_collection<taxonomy::shell>(this, inst->CfsFaces());
shell->closed = inst->declaration().is(IfcSchema::IfcClosedShell::Class());
return shell;
}
taxonomy::item* mapping::map_impl(const IfcSchema::IfcFace* inst) {