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:
authorMartin Poirier <theeth@yahoo.com>2010-01-21 00:21:05 +0300
committerMartin Poirier <theeth@yahoo.com>2010-01-21 00:21:05 +0300
commitc781c3e6dcb10f774763cff65da3c9e4551cbfb2 (patch)
tree77500de1acb9eb8c3200c7d70a68c02ef0e6504d
parent0568f608c400cc2a0f88c65ef1eb55126d945887 (diff)
remove debug print
-rw-r--r--source/blender/editors/transform/transform_constraints.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/editors/transform/transform_constraints.c b/source/blender/editors/transform/transform_constraints.c
index d8a738a2d45..b67e2cb0df1 100644
--- a/source/blender/editors/transform/transform_constraints.c
+++ b/source/blender/editors/transform/transform_constraints.c
@@ -203,8 +203,6 @@ static void axisProjection(TransInfo *t, float axis[3], float in[3], float out[3
if(in[0]==0.0f && in[1]==0.0f && in[2]==0.0f)
return;
- print_v3("viewinv[2]", t->viewinv[2]);
-
angle = fabs(angle_v3v3(axis, t->viewinv[2]));
if (angle > M_PI / 2) {
angle = M_PI - angle;