summaryrefslogtreecommitdiff
path: root/src/egg/math/eggMatrix.cpp
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2026-05-07 19:53:30 +0200
committerrobojumper <robojumper@gmail.com>2026-05-07 19:53:30 +0200
commitd8744e1f34e9955d55a5605f939bdf0bf9d8a729 (patch)
tree944f80d4d212332abeb1f7607396fc7c7a38a70d /src/egg/math/eggMatrix.cpp
parentddb116187922a3f73ae3c97a136f499b7d724a2c (diff)
MTX/VEC cleanup
Diffstat (limited to 'src/egg/math/eggMatrix.cpp')
-rw-r--r--src/egg/math/eggMatrix.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/egg/math/eggMatrix.cpp b/src/egg/math/eggMatrix.cpp
index 93108411..260505a4 100644
--- a/src/egg/math/eggMatrix.cpp
+++ b/src/egg/math/eggMatrix.cpp
@@ -6,11 +6,11 @@
namespace EGG {
void Matrix34f::inverseTo(Matrix34f &to) const {
- PSMTXInverse(m, to.m);
+ MTXInverse(m, to.m);
}
void Matrix34f::inverseTransposeTo(Matrix34f &to) const {
- PSMTXInvXpose(m, to.m);
+ MTXInvXpose(m, to.m);
}
void Matrix34f::makeIdentity() {
@@ -357,7 +357,7 @@ void Matrix34f::loadPosMtx(u32 posMtxId) {
}
void Matrix34f::multiplyTo(const Matrix34f &m2, Matrix34f &to) const {
- PSMTXConcat(m, m2.m, to.m);
+ MTXConcat(m, m2.m, to.m);
}
void Matrix34f::dump() {}