From 8593228a13d38057a5d849f46d5cc0ab23fb1405 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 25 Aug 2022 12:54:20 +1000 Subject: Cleanup: remove outdated, unhelpful comments --- source/blender/blenlib/intern/math_matrix.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/blender/blenlib/intern/math_matrix.c b/source/blender/blenlib/intern/math_matrix.c index 771b30d2b7e..c4c9b9e3d01 100644 --- a/source/blender/blenlib/intern/math_matrix.c +++ b/source/blender/blenlib/intern/math_matrix.c @@ -113,7 +113,6 @@ void copy_m4_m3(float m1[4][4], const float m2[3][3]) /* no clear */ m1[2][1] = m2[2][1]; m1[2][2] = m2[2][2]; - /* Reevan's Bugfix */ m1[0][3] = 0.0f; m1[1][3] = 0.0f; m1[2][3] = 0.0f; @@ -2241,7 +2240,6 @@ void mat4_to_loc_quat(float loc[3], float quat[4], const float wmat[4][4]) normalize_m3_m3(mat3_n, mat3); /* So scale doesn't interfere with rotation T24291. */ - /* FIXME: this is a workaround for negative matrix not working for rotation conversion. */ if (is_negative_m3(mat3)) { negate_m3(mat3_n); } -- cgit v1.2.3