Skip to content
Snippets Groups Projects
Commit b4fb6681 authored by Constantin Rahn's avatar Constantin Rahn
Browse files

Speedup3: replaced tuple[uv] with uv[:]

parent a41694e5
No related branches found
No related tags found
No related merge requests found
......@@ -753,7 +753,7 @@ def write_pov(filename, scene=None, info_callback=None):
uvs = uv.uv1, uv.uv2, uv.uv3
for uv in uvs:
uniqueUVs[tuple(uv)] = [-1]
uniqueUVs[uv[:]] = [-1]
tabWrite('uv_vectors {\n')
#print unique_uvs
......
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