removed unused unzip function from console.py,

replaced   x,y,z= tuple(Vec)  with  x,y,z= Vec
This commit is contained in:
2006-07-26 00:30:31 +00:00
parent 6234c25678
commit e7263b0c66
3 changed files with 4 additions and 24 deletions

View File

@@ -121,7 +121,7 @@ def write(filename):
for v in mesh.verts:
#if not i%100 and meshtools.show_progress:
# Blender.Window.DrawProgressBar(float(i)/len(mesh.verts), "Writing Verts")
x, y, z = tuple(v.co)
x, y, z = v.co
file.write(struct.pack("<fff", x, y, z))
# === Face List ===