Fix eggMatrix amd eggMath

This commit is contained in:
elijah-thomas774
2024-05-04 13:32:11 -04:00
parent 0c949318e5
commit ca18ce8954
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ public:
static T maxNumber() {
// TODO: Generalize to other classes
// This is low priority since it will always be a float
return FLT_MAX;
return 3.402823466e+38f;
}
static T pi() {
+1 -1
View File
@@ -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