more progress

This commit is contained in:
lepelog
2026-06-24 01:13:28 +02:00
parent 261b6b9524
commit 2f3d3dc4f6
4 changed files with 275 additions and 10 deletions
+6 -1
View File
@@ -272,10 +272,15 @@ public:
return cM::atan2s(-y, absXZ());
}
s16 atan2sY_XZ() const {
// TODO: make sure this isn't bad
s32 atan2sY_XZ() const {
return cM::atan2s(y, absXZ());
}
s32 atan2sXZ_Y() const {
return -atan2sY_XZ();
}
f32 angle(const mVec3_c &other) const {
return EGG::Vector3f::angle(other);
}