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-03-06 21:23:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-06 21:23:26 +0400
commit7b7214c72233f72268f72d31fd8626a0f94e557e (patch)
treef3d84c26e1f8013d924fca56b4d9184aec046215 /source/blender/bmesh/operators/bmo_create.c
parentbffeab99aef22181ea6284381b77fcc85833967c (diff)
code cleanup - give edge split more helpful var names and replace edgetag macros with static functions.
Diffstat (limited to 'source/blender/bmesh/operators/bmo_create.c')
-rw-r--r--source/blender/bmesh/operators/bmo_create.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/bmesh/operators/bmo_create.c b/source/blender/bmesh/operators/bmo_create.c
index 67e4f09463d..6071562e127 100644
--- a/source/blender/bmesh/operators/bmo_create.c
+++ b/source/blender/bmesh/operators/bmo_create.c
@@ -228,11 +228,13 @@ static int UNUSED_FUNCTION(rotsys_fill_faces)(BMesh *bm, EdgeData *edata, VertDa
rad = count_edge_faces(bm, e);
- if (rad < 2)
+ if (rad < 2) {
starte = e;
- else
+ }
+ else {
continue;
-
+ }
+
/* do two passes, going forward then backwar */
for (i = 0; i < 2; i++) {
BLI_smallhash_init(hash);