Arch: fix in new ifc-importer
This commit is contained in:
committed by
Yorik van Havre
parent
f46ec01849
commit
23ae1841d3
@@ -167,9 +167,9 @@ def insert(filename,docname,skip=[]):
|
||||
obj = None
|
||||
baseobj = None
|
||||
|
||||
if (ptype == "IfcOpeningElement") and (not SEPARATE_OPENINGS): break
|
||||
if pid in skip: break
|
||||
if ptype in SKIP: break
|
||||
if (ptype == "IfcOpeningElement") and (not SEPARATE_OPENINGS): continue
|
||||
if pid in skip: continue
|
||||
if ptype in SKIP: continue
|
||||
|
||||
brep = ifcopenshell.create_shape(product,shape_attributes)
|
||||
if brep:
|
||||
|
||||
Reference in New Issue
Block a user