Skip to content

Commit

Permalink
Fix #4841: Syntactic fix in blended ASE exporter.
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Jun 20, 2018
1 parent 76463fe commit 08c8824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/scripts/commands/ase_export_blend.py
Expand Up @@ -121,7 +121,7 @@ def skinmatrix(pointset, width, height):
def processBlendBrush(brushnode):
#ab = AABB(brushnode)
origin = brushnode.getFace(0).getWinding()[0].vertex
ab = AABB(origin,origin-origin)
ab = dr.AABB(origin,origin-origin)
numfaces = brushnode.getNumFaces()
for index in range(numfaces):
facenode = brushnode.getFace(index)
Expand Down

0 comments on commit 08c8824

Please sign in to comment.