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-27 18:07:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-27 18:07:19 +0400
commit130668b12fe2373fe8c4ea6f32ec94fb7dad679d (patch)
tree0eef219e36d1101a5c2f959594b2e3a55ed1acb8 /source/blender/bmesh/tools
parente17bf02c2dcf6e51176eafc5bbe77171bc7014c5 (diff)
minor bmesh api naming edits.
Diffstat (limited to 'source/blender/bmesh/tools')
-rw-r--r--source/blender/bmesh/tools/BME_bevel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/tools/BME_bevel.c b/source/blender/bmesh/tools/BME_bevel.c
index 0c1f0454dc5..2db74ea0ea4 100644
--- a/source/blender/bmesh/tools/BME_bevel.c
+++ b/source/blender/bmesh/tools/BME_bevel.c
@@ -1002,9 +1002,9 @@ BMesh *BME_bevel(BMEditMesh *em, float value, int res, int options, int defgrp_i
BMO_push(bm, NULL);
BME_bevel_initialize(bm, options, defgrp_index, angle, td);
//if (i != 0) BME_bevel_reinitialize(bm);
- bmesh_begin_edit(bm, 0);
+ bmesh_edit_begin(bm, 0);
BME_bevel_mesh(bm, (float)d, res, options, defgrp_index, td);
- bmesh_end_edit(bm, 0);
+ bmesh_edit_end(bm, 0);
d /= (i == 0) ? 3.0 : 2.0;
BMO_pop(bm);
}