Arch: Fixed some bugs in IFC export

This commit is contained in:
Yorik van Havre
2014-05-12 19:52:25 -03:00
parent 771c3f9b7c
commit d6a348effd
4 changed files with 14 additions and 9 deletions

View File

@@ -676,7 +676,7 @@ def getBrepFacesData(obj,scale=1):
sols = []
for sol in obj.Shape.Solids:
s = []
for face in obj.Shape.Faces:
for face in sol.Faces:
f = []
f.append(getTuples(face.OuterWire,scale,normal=face.normalAt(0,0),close=False))
for wire in face.Wires: