almost there

This commit is contained in:
elijah-thomas774
2025-11-20 01:24:43 -05:00
parent 54c3f67bdf
commit b4e57d0f40
7 changed files with 378 additions and 110 deletions
+2 -2
View File
@@ -55,8 +55,8 @@ public:
void SetupFrom3Vtx(const nw4r::math::VEC3 *v1, const nw4r::math::VEC3 *v2, const nw4r::math::VEC3 *v3) {
cM3d_CalcPla(v1, v2, v3, &mNormal, &mD);
}
f32 getCrossY_NonIsZero(const mVec3_c *param_1) {
return -(mNormal.x * param_1->x + mNormal.z * param_1->z) / mNormal.y;
f32 getCrossY_NonIsZero(const mVec3_c *param_1) const {
return -(param_1->x * mNormal.x + mNormal.z * param_1->z) / mNormal.y;
}
f32 GetXZDist() const {