Skip to content

Instantly share code, notes, and snippets.

@zid

zid/blah.py Secret

Created June 11, 2023 17:04
Show Gist options
  • Save zid/d59f86ec177fa5fffe30890bd6ccb42b to your computer and use it in GitHub Desktop.
Save zid/d59f86ec177fa5fffe30890bd6ccb42b to your computer and use it in GitHub Desktop.
for f, f_index in face_index_pairs[:-1]
f_v = [(vi, me_verts[v_idx], l_idx)
for vi, (v_idx, l_idx) in enumerate(zip(f.vertices, f.loop_indices))]
fw('%d, ' % (totverts + f_v[0][1].index))
f, f_index = face_index_pairs[-1]
f_v = [(vi, me_verts[v_idx], l_idx)
for vi, (v_idx, l_idx) in enumerate(zip(f.vertices, f.loop_indices))]
fw('%d, ' % (totverts + f_v[0][1].index))
fw('%d' % something)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment