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-28 13:48:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-28 13:48:00 +0400
commitb0a09bfab34e0340a1c0762355043c8b41cf573e (patch)
tree0b150cc33f3949960a02ca7c3a253c2de1542df9 /source/blender/bmesh/operators/bmo_triangulate.c
parente828b10251c5f93f8c4a78762433869f0365a85b (diff)
code cleanup:
use bmo_* prefix for operator defs, was confusing with bmesh_* api functions.
Diffstat (limited to 'source/blender/bmesh/operators/bmo_triangulate.c')
-rw-r--r--source/blender/bmesh/operators/bmo_triangulate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/bmesh/operators/bmo_triangulate.c b/source/blender/bmesh/operators/bmo_triangulate.c
index b4ec3d740d4..b3f4fefa36e 100644
--- a/source/blender/bmesh/operators/bmo_triangulate.c
+++ b/source/blender/bmesh/operators/bmo_triangulate.c
@@ -39,7 +39,7 @@
#define FACE_MARK 2
#define EDGE_MARK 4
-void triangulate_exec(BMesh *bm, BMOperator *op)
+void bmo_triangulate_exec(BMesh *bm, BMOperator *op)
{
BMOIter siter;
BMFace *face, **newfaces = NULL;
@@ -78,7 +78,7 @@ void triangulate_exec(BMesh *bm, BMOperator *op)
BLI_array_free(newfaces);
}
-void bmesh_beautify_fill_exec(BMesh *bm, BMOperator *op)
+void bmo_beautify_fill_exec(BMesh *bm, BMOperator *op)
{
BMOIter siter;
BMIter iter;
@@ -154,7 +154,7 @@ void bmesh_beautify_fill_exec(BMesh *bm, BMOperator *op)
BMO_slot_from_flag(bm, op, "geomout", ELE_NEW, BM_EDGE|BM_FACE);
}
-void bmesh_triangle_fill_exec(BMesh *bm, BMOperator *op)
+void bmo_triangle_fill_exec(BMesh *bm, BMOperator *op)
{
BMOIter siter;
BMEdge *e;