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>2013-08-03 19:30:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-03 19:30:57 +0400
commit31761f5e5b06a394a4165ddc2eca27e644b1282a (patch)
tree7029d32f767f1ceb52f962dd20f880eabbcd55ce /source/blender/editors/mesh/editmesh_loopcut.c
parent20a377f93a5af8ffe8e31b8ae8cb7b042ac9434c (diff)
code cleanup: replace bmesh_radial_face_find -> BM_edge_in_face
Diffstat (limited to 'source/blender/editors/mesh/editmesh_loopcut.c')
-rw-r--r--source/blender/editors/mesh/editmesh_loopcut.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_loopcut.c b/source/blender/editors/mesh/editmesh_loopcut.c
index 3c1b210d171..892b773b1ba 100644
--- a/source/blender/editors/mesh/editmesh_loopcut.c
+++ b/source/blender/editors/mesh/editmesh_loopcut.c
@@ -125,9 +125,9 @@ static void edgering_find_order(BMEdge *lasteed, BMEdge *eed,
l = eed->l;
/* find correct order for v[1] */
- if (!(BM_edge_in_face(l->f, eed) && BM_edge_in_face(l->f, lasteed))) {
+ if (!(BM_edge_in_face(eed, l->f) && BM_edge_in_face(lasteed, l->f))) {
BM_ITER_ELEM (l, &liter, l, BM_LOOPS_OF_LOOP) {
- if (BM_edge_in_face(l->f, eed) && BM_edge_in_face(l->f, lasteed))
+ if (BM_edge_in_face(eed, l->f) && BM_edge_in_face(lasteed, l->f))
break;
}
}