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:
authorDalai Felinto <dfelinto@gmail.com>2013-10-16 07:24:50 +0400
committerDalai Felinto <dfelinto@gmail.com>2013-10-16 07:24:50 +0400
commit859dfccb589a099e0b3032b52c3b528f5e1f2568 (patch)
tree3546f75bed7be6b659ae74032cbe9030dc3c958e /source/blender/bmesh/operators/bmo_beautify.c
parentfe93d4a3d848abd59a1de43a51142c3e2f3c961f (diff)
beautify: passing edge/face flags as arguments
no functional change, just preparing the ground for the beautify in triangulate modifier changes.
Diffstat (limited to 'source/blender/bmesh/operators/bmo_beautify.c')
-rw-r--r--source/blender/bmesh/operators/bmo_beautify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_beautify.c b/source/blender/bmesh/operators/bmo_beautify.c
index b0b3e723603..d9ab30bfcfa 100644
--- a/source/blender/bmesh/operators/bmo_beautify.c
+++ b/source/blender/bmesh/operators/bmo_beautify.c
@@ -79,7 +79,7 @@ void bmo_beautify_fill_exec(BMesh *bm, BMOperator *op)
}
bm->elem_index_dirty |= BM_EDGE;
- BM_mesh_beautify_fill(bm, edge_array, edge_array_len, flag, method);
+ BM_mesh_beautify_fill(bm, edge_array, edge_array_len, flag, method, ELE_NEW, FACE_MARK | ELE_NEW);
MEM_freeN(edge_array);