mirror of
https://github.com/zeldaret/tp
synced 2026-07-07 06:04:58 -04:00
Add a precompiled header for RELs (#2597)
This commit is contained in:
@@ -10,7 +10,7 @@ struct SVec {
|
||||
class csXyz : public SVec {
|
||||
public:
|
||||
static const csXyz Zero;
|
||||
/* 80018BD0 */ ~csXyz() {};
|
||||
/* 80018BD0 */ ~csXyz() {}
|
||||
/* inline */ csXyz() {}
|
||||
/* inline */ csXyz(const csXyz& other) : SVec(other){};
|
||||
/* 802673F4 */ csXyz(s16, s16, s16);
|
||||
|
||||
@@ -100,7 +100,7 @@ struct cXyz : Vec {
|
||||
void zero() { set(0.0f, 0.0f, 0.0f); }
|
||||
|
||||
f32 getSquareMag() const { return VECSquareMag(this); }
|
||||
f32 getSquareDistance(const Vec& other) const { return VECSquareDistance(this, &other); }
|
||||
f32 getSquareDistance(const Vec& other) const { return PSVECSquareDistance(this, &other); }
|
||||
|
||||
static f32 getNearZeroValue() { return 8e-11f; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user