From 7013ee89507f2c43bf2d321cb005b2d80896162c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 24 Jun 2006 16:12:07 +0000 Subject: [PATCH] reversed the order of suptraction for making the manipulator plane for adtive editmode objects, givea better results now for rotating about a verts normal. --- source/blender/src/editmesh_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/src/editmesh_lib.c b/source/blender/src/editmesh_lib.c index aa10654a2d8..fce6141e5a9 100644 --- a/source/blender/src/editmesh_lib.c +++ b/source/blender/src/editmesh_lib.c @@ -190,7 +190,7 @@ void EM_editselection_plane(float *plane, EditSelection *ese) if (ese->prev) { /*use previously selected data to make a usefull vertex plane */ EM_editselection_center(vec, ese->prev); - VecSubf(plane, eve->co, vec); + VecSubf(plane, vec, eve->co); } else { /* make a fake plane thats at rightangles to the normal we cant make a crossvec from a vec thats the same as the vec