- bugfix [#20654] the property edge_face_count of the Mesh-Object does not work

- remove unneeded particle function
This commit is contained in:
Campbell Barton
2010-01-12 18:33:21 +00:00
parent f7f98f3b05
commit 59dfd24f75
2 changed files with 5 additions and 10 deletions

View File

@@ -299,7 +299,7 @@ class Mesh(bpy_types.ID):
@property
def edge_face_count(self):
edge_face_count_dict = self.edge_face_count_dict
return [edge_face_count_dict.get(ed.key, 0) for ed in mesh.edges]
return [edge_face_count_dict.get(ed.key, 0) for ed in self.edges]
def edge_loops(self, faces=None, seams=()):
"""