Arch: added DAE importer patch - fixes #2044

This commit is contained in:
Yorik van Havre 2015-04-09 20:17:37 -03:00
parent e18796efc5
commit 1f47d2cac0

View File

@ -125,12 +125,12 @@ def export(exportList,filename):
objind = 0
scenenodes = []
for obj in exportList:
vindex = []
nindex = []
findex = []
if obj.isDerivedFrom("Part::Feature"):
print "exporting object ",obj.Name, obj.Shape
m = obj.Shape.tessellate(1)
vindex = []
nindex = []
findex = []
# vertex indices
for v in m[0]:
vindex.extend([v.x*scale,v.y*scale,v.z*scale])
@ -146,9 +146,6 @@ def export(exportList,filename):
elif obj.isDerivedFrom("Mesh::Feature"):
print "exporting object ",obj.Name, obj.Mesh
m = obj.Mesh
vindex = []
nindex = []
findex = []
# vertex indices
for v in m.Topology[0]:
vindex.extend([v.x*scale,v.y*scale,v.z*scale])