From ca18ce89544506e8aa6557476076cd21cb368cdb Mon Sep 17 00:00:00 2001 From: elijah-thomas774 Date: Sat, 4 May 2024 13:32:11 -0400 Subject: Fix eggMatrix amd eggMath --- src/egg/math/eggMatrix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/egg/math/eggMatrix.cpp') 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 -- cgit v1.2.3