mirror of
https://github.com/zeldaret/ss
synced 2026-08-04 09:08:55 -04:00
Filled out FileManager (NonMatching)
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
#include "types.h"
|
||||
|
||||
#include "egg/math/eggMatrix.h"
|
||||
#include "egg/math/eggMath.h"
|
||||
#include "egg/math/eggVector.h"
|
||||
#include "egg/prim/eggBitFlag.h"
|
||||
#include "egg/prim/eggBuffer.h"
|
||||
|
||||
@@ -13,7 +13,7 @@ public:
|
||||
Vector3f(const Vector3f& other) {x = other.x, y = other.y, z = other.z;}
|
||||
// may need change
|
||||
f32 squaredLength() { return x*x + y*y + z*z; }
|
||||
f32 length() { return Math<f32>::frsqrt(squaredLength()); }
|
||||
f32 length() { return Math<f32>::sqrt(squaredLength()); }
|
||||
/* 8049bcc0 */ void normalise();
|
||||
/* 8049bd50 */ void setLength(Vector3f& src, f32 length);
|
||||
/* 8049be10 */ void setLength(f32 length);
|
||||
|
||||
Reference in New Issue
Block a user