diff options
author | Omniscient <omniscient.oce@gmail.com> | 2024-06-15 16:38:05 +1000 |
---|---|---|
committer | Omniscient <omniscient.oce@gmail.com> | 2024-06-15 16:38:05 +1000 |
commit | c5808488875484aca814bfc8e526f37f3f447166 (patch) | |
tree | e560bc86302fad0c8520140511e1994c2b4800d7 /src/maths/maths.h | |
parent | 59f67f04d7238453da766218a37b3c78607fb122 (diff) |
shinchoku
Diffstat (limited to 'src/maths/maths.h')
-rw-r--r-- | src/maths/maths.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/maths/maths.h b/src/maths/maths.h index 80ce04d..fa58088 100644 --- a/src/maths/maths.h +++ b/src/maths/maths.h @@ -314,7 +314,7 @@ static inline mat4 transform_to_mat(transform *tf) { mat4 scale = mat4_scale(tf->scale); mat4 rotation = mat4_rotation(tf->rotation); mat4 translation = mat4_translation(tf->position); - return mat4_mult( mat4_mult(scale, rotation), translation); + return mat4_mult(mat4_mult(scale, rotation), translation); } // --- Sizing asserts |