Skip to content
Snippets Groups Projects
Commit d58758ae authored by Campbell Barton's avatar Campbell Barton
Browse files

fix [#29040] ASCII-STL-Export (write expects float)

parent 334f35b1
No related branches found
No related tags found
No related merge requests found
......@@ -186,7 +186,7 @@ def _ascii_write(filename, faces):
for face in faces:
data.write('''facet normal 0 0 0\nouter loop\n''')
for vert in face:
data.write('vertex %f %f %f\n' % vert)
data.write('vertex %f %f %f\n' % vert[:])
data.write('endloop\nendfacet\n')
data.write('endsolid Exported from blender\n')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment