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:
-rw-r--r--source/blender/blenlib/intern/arithb.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/blenlib/intern/arithb.c b/source/blender/blenlib/intern/arithb.c
index d36f7923c58..b77590ebd18 100644
--- a/source/blender/blenlib/intern/arithb.c
+++ b/source/blender/blenlib/intern/arithb.c
@@ -2268,13 +2268,10 @@ void Mat3ToSize( float mat[][3], float *size)
VecCopyf(vec, mat[0]);
size[0]= Normalise(vec);
- if(vec[0]<0.0) size[0]= -size[0];
VecCopyf(vec, mat[1]);
size[1]= Normalise(vec);
- if(vec[1]<0.0) size[1]= -size[1];
VecCopyf(vec, mat[2]);
size[2]= Normalise(vec);
- if(vec[2]<0.0) size[2]= -size[2];
}