diff options
author | Sven Göthel <[email protected]> | 2024-04-13 20:43:10 +0200 |
---|---|---|
committer | Sven Göthel <[email protected]> | 2024-04-13 20:43:10 +0200 |
commit | b413c4b074d7b38b1487b7f557a672fa4fe36e51 (patch) | |
tree | b48eef97861f32f6cc37918a3b57aa3c69e7cef0 /src | |
parent | 5364c7007ff008c9d823e3048a057c273fb97b01 (diff) |
math: Mat4f: Add get{Column|Row} w/o passing result storage; Add operator*(const Vec4f&)
Diffstat (limited to 'src')
-rw-r--r-- | src/math.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math.cpp b/src/math.cpp index 66f6555..8f26d10 100644 --- a/src/math.cpp +++ b/src/math.cpp @@ -51,7 +51,7 @@ jau::math::Mat4f& jau::math::Mat4f::setToRotation(const jau::math::Quaternion& q const float norm = q.magnitudeSquared(); if ( jau::is_zero(norm) ) { // identity matrix -> srecip = 0f - load_identity(); + loadIdentity(); return *this; } float srecip; |