From 402a8bfd6842f15df940e7ed4f50fc36e0d73aff Mon Sep 17 00:00:00 2001 From: raysan5 Date: Mon, 5 Jun 2017 18:53:53 +0200 Subject: [PATCH] Added note about transposing --- src/raymath.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/raymath.h b/src/raymath.h index 2bde20429..499f9eec4 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -414,6 +414,7 @@ RMDEF void VectorTransform(Vector3 *v, Matrix mat) v->y = mat.m1*x + mat.m5*y + mat.m9*z + mat.m13; v->z = mat.m2*x + mat.m6*y + mat.m10*z + mat.m14; + // TODO: Transposed matrix (?) /* v->x = mat.m0*x + mat.m1*y + mat.m2*z + mat.m3; v->y = mat.m4*x + mat.m5*y + mat.m6*z + mat.m7;