This commit is contained in:
Christian Semmler 2024-02-24 11:22:56 -05:00
parent 8d229eb695
commit c1b4ee1859

View File

@ -15,9 +15,9 @@ class Mx3DPointFloat : public Vector3 {
m_elements[2] = p_z;
}
inline float GetX() { return m_elements[0]; }
inline float GetY() { return m_elements[1]; }
inline float GetZ() { return m_elements[2]; }
inline float GetX() { return m_data[0]; }
inline float GetY() { return m_data[1]; }
inline float GetZ() { return m_data[2]; }
// FUNCTION: LEGO1 0x100343a0
inline Mx3DPointFloat(const Mx3DPointFloat& p_other) : Vector3(m_elements) { EqualsImpl(p_other.m_data); }