mirror of
https://github.com/zeldaret/ss
synced 2026-05-28 08:25:06 -04:00
Fix eggMatrix amd eggMath
This commit is contained in:
@@ -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() {
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user