summaryrefslogtreecommitdiff
path: root/src/egg/math
diff options
context:
space:
mode:
authorelijah-thomas774 <elijahthomas774@gmail.com>2024-05-04 13:32:11 -0400
committerelijah-thomas774 <elijahthomas774@gmail.com>2024-05-04 13:32:11 -0400
commitca18ce89544506e8aa6557476076cd21cb368cdb (patch)
tree249d6eb4739f47a54b06bd18eaedbbb6ec1dfcc9 /src/egg/math
parent0c949318e555e58c80fa74972fd814ac17c0287e (diff)
Fix eggMatrix amd eggMath
Diffstat (limited to 'src/egg/math')
-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 a099e01c..794cca7d 100644
--- a/src/egg/math/eggMatrix.cpp
+++ b/src/egg/math/eggMatrix.cpp
@@ -362,6 +362,6 @@ void Matrix34f::multiplyTo(const Matrix34f &m2, Matrix34f &to) const {
void Matrix34f::dump() {}
-const Matrix34f Matrix34f::ident(1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f);
+Matrix34f Matrix34f::ident(1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f);
} // namespace EGG