Skip to content

Commit

Permalink
Arch: small fix in DAE importer
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Feb 16, 2015
1 parent 0bb651d commit 9b4b46f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Mod/Arch/importDAE.py
Expand Up @@ -97,6 +97,8 @@ def read(filename):
tset = prim.triangles()
elif hasattr(prim,"triangleset"):
tset = prim.triangleset()
else:
tset = []
for tri in tset:
face = []
for v in tri.vertices:
Expand Down

0 comments on commit 9b4b46f

Please sign in to comment.