d_a_obj_flying_clawshot_target OK (fixed) (#102)

* d_a_obj_flying_clawshot_target OK

* fix tubo symbol
This commit is contained in:
Elijah Thomas
2024-11-13 11:27:39 -05:00
committed by GitHub
parent 2ecf6509dd
commit fefe3af58f
10 changed files with 220 additions and 22 deletions
+2
View File
@@ -14,7 +14,9 @@ public:
return *this;
}
bool Set(const mVec3_c &, const mVec3_c &);
void fn_802F2780(const mQuat_c &other);
bool fn_802F2450(const mVec3_c &, const mVec3_c &, f32);
};
#endif
+5
View File
@@ -220,11 +220,16 @@ public:
f32 distance(const mVec3_c &to) const {
return EGG::Math<f32>::sqrt(PSVECSquareDistance(*this, to));
}
f32 squareDistance(const mVec3_c &to) const {
return VEC3DistSq(*this, to);
}
f32 squareMagXZ() const {
return x * x + z * z;
}
void rotX(const mAng &angle);
void rotY(const mAng &angle);
void rotZ(const mAng &angle);
void CopyTo(nw4r::math::VEC3 *p) {
p->x = x;