Skip to content

Instantly share code, notes, and snippets.

@nixeagle
Created July 14, 2010 19:34
Show Gist options
  • Save nixeagle/475921 to your computer and use it in GitHub Desktop.
Save nixeagle/475921 to your computer and use it in GitHub Desktop.
for face in mesh.faces:
out.write('f')
for vert in face.v:
out.write( ' %i' % (vert.index + 1) )
out.write('\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment