Correct error in own matrix normalize commit

This commit is contained in:
Campbell Barton 2015-11-12 18:36:23 +11:00
parent d75bca1842
commit 60505728d9
1 changed files with 3 additions and 3 deletions

View File

@ -1224,9 +1224,9 @@ void mat3_normalized_to_eul(float eul[3], float mat[3][3])
}
void mat3_to_eul(float eul[3], float mat[3][3])
{
float tmat[3][3];
normalize_m3_m3(tmat, mat);
mat3_normalized_to_eul(eul, mat);
float unit_mat[3][3];
normalize_m3_m3(unit_mat, mat);
mat3_normalized_to_eul(eul, unit_mat);
}
/* XYZ order */