From f02f491ed04b3427840c375de3fd62c9de59cd84 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 29 Jan 2013 20:49:40 +0000 Subject: correction to r54188, also don't attempt to triangulate triangles. --- source/blender/blenlib/intern/math_matrix.c | 1 - 1 file changed, 1 deletion(-) (limited to 'source/blender/blenlib/intern/math_matrix.c') 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]) -- cgit v1.2.3