Arch: bugfixes in IFC exporter

This commit is contained in:
Yorik van Havre
2018-07-26 19:23:48 -03:00
parent 6005da2464
commit 6ca4d89cce
4 changed files with 18 additions and 3 deletions

View File

@@ -583,7 +583,7 @@ class Component:
if hasattr(obj.Axis.Proxy,"getPoints"):
points = obj.Axis.Proxy.getPoints(obj.Axis)
if not points:
if obj.Axis.isDerivedFrom("Part.Feature"):
if obj.Axis.isDerivedFrom("Part::Feature"):
points = [v.Point for v in obj.Axis.Shape.Vertexes]
if points:
shps = []