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:
authorCampbell Barton <ideasman42@gmail.com>2013-01-30 00:49:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-01-30 00:49:40 +0400
commitf02f491ed04b3427840c375de3fd62c9de59cd84 (patch)
treeea04d196ecfb44ca6ab38f21d658b0b896de9c46 /source/blender/blenlib/intern/math_matrix.c
parente9678e74b071b5edd1fac233ac6dac5df821242f (diff)
correction to r54188, also don't attempt to triangulate triangles.
Diffstat (limited to 'source/blender/blenlib/intern/math_matrix.c')
-rw-r--r--source/blender/blenlib/intern/math_matrix.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_matrix.c b/source/blender/blenlib/intern/math_matrix.c
index b7e7fea897f..d31916c43c1 100644
--- a/source/blender/blenlib/intern/math_matrix.c
+++ b/source/blender/blenlib/intern/math_matrix.c
@@ -415,7 +415,6 @@ void mul_v2_m3v3(float r[2], float M[3][3], float a[3])
{
r[0] = M[0][0] * a[0] + M[1][0] * a[1] + M[2][0] * a[2];
r[1] = M[0][1] * a[0] + M[1][1] * a[1] + M[2][1] * a[2];
- r[2] = M[0][2] * a[0] + M[1][2] * a[1] + M[2][2] * a[2];
}
void mul_m3_v3(float M[3][3], float r[3])