From 3de81314fa61f9b123e5d10cbe4176718479be10 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 15 Oct 2015 21:28:07 +1100 Subject: Error in last commit --- source/blender/blenlib/intern/math_matrix.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender') diff --git a/source/blender/blenlib/intern/math_matrix.c b/source/blender/blenlib/intern/math_matrix.c index 67754672463..4bf6d162970 100644 --- a/source/blender/blenlib/intern/math_matrix.c +++ b/source/blender/blenlib/intern/math_matrix.c @@ -1315,6 +1315,7 @@ void normalize_m4_m4(float rmat[4][4], float mat[4][4]) float len = normalize_v3_v3(rmat[i], mat[i]); rmat[i][3] = (len != 0.0f) ? (mat[i][3] / len) : mat[i][3]; } + copy_v4_v4(rmat[3], mat[3]); } void adjoint_m2_m2(float m1[2][2], float m[2][2]) -- cgit v1.2.3