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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-01-29 14:43:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-01-29 14:43:15 +0400
commitdc727f0256562cb8fc1074fda9b9b7f407496ab2 (patch)
treebdea8104a4202564520246eeab7019d2c49d7062 /source
parent37489d71c7f0007ffc3aa252a4cc63d1aa903399 (diff)
sculpt, replace bmo call to triangulate with BM_mesh_triangulate()
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index ce7d72f9787..a81115aeae3 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -4527,7 +4527,7 @@ static void SCULPT_OT_set_persistent_base(wmOperatorType *ot)
static void sculpt_dynamic_topology_triangulate(BMesh *bm)
{
- BMO_op_callf(bm, BMO_FLAG_DEFAULTS, "triangulate faces=%af");
+ BM_mesh_triangulate(bm, false, false);
}
void sculpt_pbvh_clear(Object *ob)