diff options
author | quou <quou@disroot.org> | 2025-01-14 00:04:55 +1100 |
---|---|---|
committer | quou <quou@disroot.org> | 2025-01-14 00:04:55 +1100 |
commit | fd488f9603f22db0312eadcdb93b7880922dc9a7 (patch) | |
tree | 15b7986e2c06eea57575f4c97811cbc65eaa120a /maths.hpp | |
parent | dfa0b6de5a070d1be63d04574c3b8ce469518250 (diff) |
misc refactoring
Diffstat (limited to 'maths.hpp')
-rw-r--r-- | maths.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -489,8 +489,8 @@ struct m4f { static v4f transform(m4f m, v4f v); static AABB transform(m4f m, AABB aabb); - m4f inverse(); - m4f transposed(); + m4f inverse() const; + m4f transposed() const; }; inline static v4f make_color(uint32_t rgb, uint8_t a) { |