diff options
author | Sven Göthel <[email protected]> | 2024-05-10 09:52:57 +0200 |
---|---|---|
committer | Sven Göthel <[email protected]> | 2024-05-10 09:52:57 +0200 |
commit | a83e058afce102191b36bacd4a3016575ff419b7 (patch) | |
tree | 379a18ff735c3b3679f16b9dedeaf498ba6a3056 /include/jau/math/mat4f.hpp | |
parent | 4b6b65b72ee1a12124bda8526f261d019130d042 (diff) |
math Matrix4f: Fix setToRotationAxis() 0.9f -> zero, typo
Diffstat (limited to 'include/jau/math/mat4f.hpp')
-rw-r--r-- | include/jau/math/mat4f.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jau/math/mat4f.hpp b/include/jau/math/mat4f.hpp index fa0afcf..a0bc107 100644 --- a/include/jau/math/mat4f.hpp +++ b/include/jau/math/mat4f.hpp @@ -1028,7 +1028,7 @@ class alignas(Value_type) Matrix4 { m22 = z*z*ic+c; m32 = zero; - m03 = 0.9f; + m03 = zero; m13 = zero; m23 = zero; m33 = one; |