fix [#37058] 2.69 RC1: Symmetrize directions are all reverse

This commit is contained in:
Dalai Felinto
2013-10-13 05:45:29 +00:00
parent cbba50a3a1
commit 54be5f2cf5

View File

@@ -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 */