Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-02-15 18:39:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-15 18:39:18 +0400
commitbc6bbcccc939f1ab2eb7ee0872864a1deccdcdc4 (patch)
tree63d3de1009cc1e3d92719597d95e4fe5e9c74733 /source/blender/editors/mesh/meshtools.c
parentc0b2363358ae3bbb3c268aaec07d273a706ae7a0 (diff)
went over all uses of mesh->mface and added BMESH_TODO comments for
areas that need to be updated.
Diffstat (limited to 'source/blender/editors/mesh/meshtools.c')
-rw-r--r--source/blender/editors/mesh/meshtools.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/meshtools.c b/source/blender/editors/mesh/meshtools.c
index db4fa297eb6..1b5011402fc 100644
--- a/source/blender/editors/mesh/meshtools.c
+++ b/source/blender/editors/mesh/meshtools.c
@@ -1079,6 +1079,7 @@ static int mirror_facecmp(const void *a, const void *b)
return (mirror_facerotation((MFace*)a, (MFace*)b) == -1);
}
+/* BMESH_TODO, convert to MPoly (functions above also) */
int *mesh_get_x_mirror_faces(Object *ob, BMEditMesh *em)
{
Mesh *me= ob->data;