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-13 09:45:29 +0400
committerDalai Felinto <dfelinto@gmail.com>2013-10-13 09:45:29 +0400
commit54be5f2cf5316db40529242ff63c30d863c8b108 (patch)
tree410d76838a0dd5d1670963de18f9b742f2691767 /source/blender/bmesh/operators/bmo_symmetrize.c
parentcbba50a3a1fa45a7e2fb0cd788f1e01684c7ff25 (diff)
fix [#37058] 2.69 RC1: Symmetrize directions are all reverse
Diffstat (limited to 'source/blender/bmesh/operators/bmo_symmetrize.c')
-rw-r--r--source/blender/bmesh/operators/bmo_symmetrize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_symmetrize.c b/source/blender/bmesh/operators/bmo_symmetrize.c
index 74f880906c0..5c1b4287c2f 100644
--- a/source/blender/bmesh/operators/bmo_symmetrize.c
+++ b/source/blender/bmesh/operators/bmo_symmetrize.c
@@ -56,7 +56,7 @@ void bmo_symmetrize_exec(BMesh *bm, BMOperator *op)
copy_v3_fl(plane_no, 0.0f);
copy_v3_fl(scale, 1.0f);
- plane_no[axis] = direction > 2 ? 1.0f : -1.0f;
+ plane_no[axis] = direction > 2 ? -1.0f : 1.0f;
scale[axis] *= -1.0f;
/* Cut in half */