mirror of
https://github.com/zeldaret/ss
synced 2026-07-10 22:41:46 -04:00
almost there
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user