summaryrefslogtreecommitdiff
path: root/src/egg/math/eggMatrix.cpp
diff options
context:
space:
mode:
authorelijah-thomas774 <elijahthomas774@gmail.com>2024-05-12 16:04:01 -0400
committerelijah-thomas774 <elijahthomas774@gmail.com>2024-05-12 16:04:01 -0400
commit62e0778390f838cdb92f16b3582e2d76299ae8a5 (patch)
tree56f654268089544b7d3625b4cf60fc9fb087be97 /src/egg/math/eggMatrix.cpp
parent94ec354dde88a3e5e9f3f5b23f3506f83f0beb80 (diff)
fixed up typedef for u32 and s32 from mistake long ago
Diffstat (limited to 'src/egg/math/eggMatrix.cpp')
-rw-r--r--src/egg/math/eggMatrix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egg/math/eggMatrix.cpp b/src/egg/math/eggMatrix.cpp
index 794cca7d..68f0049f 100644
--- a/src/egg/math/eggMatrix.cpp
+++ b/src/egg/math/eggMatrix.cpp
@@ -332,7 +332,7 @@ void Matrix34f::toQuat(Quatf &q) const {
q.multScalar(Math<f32>::inv(q.length()));
}
-void Matrix34f::slerpTo(const Matrix34f &m2, Matrix34f &out, f32 t) {
+void Matrix34f::slerpTo(const Matrix34f &m2, Matrix34f &out, f32 t) const {
Quatf q1, q2, q3;
m2.toQuat(q1);
toQuat(q2);