bmesh todo: vertex dirtmap now working again.

also renamed Polygon helper property from 'loops' to loop_indices
This commit is contained in:
Campbell Barton
2012-04-13 08:41:30 +00:00
parent 6046500ee5
commit 1cf0358a33
4 changed files with 18 additions and 19 deletions

View File

@@ -759,7 +759,7 @@ class thickface(object):
__slost__= "v", "uv", "no", "area", "edge_keys"
def __init__(self, face, uv_layer, mesh_verts):
self.v = [mesh_verts[i] for i in face.vertices]
self.uv = [uv_layer[i].uv for i in face.loops]
self.uv = [uv_layer[i].uv for i in face.loop_indices]
self.no = face.normal
self.area = face.area