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>2013-07-30 14:58:36 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-07-30 14:58:36 +0400
commit76e989d7b1303c877e8469513eae4ed746a8efe5 (patch)
treec67376b4919e0f3981ff11101164e76869a2832c /source/blender/bmesh/operators/bmo_utils.c
parent298a03ee634d2ef7eef0d4a7f1c23c7df7593a4c (diff)
function renaming for own recently added BLI_math functions, suggested by Brecht.
Diffstat (limited to 'source/blender/bmesh/operators/bmo_utils.c')
-rw-r--r--source/blender/bmesh/operators/bmo_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_utils.c b/source/blender/bmesh/operators/bmo_utils.c
index fb1e8ec6a17..8b8cab9d881 100644
--- a/source/blender/bmesh/operators/bmo_utils.c
+++ b/source/blender/bmesh/operators/bmo_utils.c
@@ -103,7 +103,7 @@ void bmo_rotate_exec(BMesh *bm, BMOperator *op)
BMO_slot_vec_get(op->slots_in, "cent", center);
BMO_slot_mat4_get(op->slots_in, "matrix", mat);
- pivot_m4(mat, center);
+ transform_pivot_set_m4(mat, center);
BMO_op_callf(bm, op->flag, "transform matrix=%m4 space=%s verts=%s", mat, op, "space", op, "verts");
}