Gilles's patch to get rid of the the same identifier warnings

Kent
--
mein@cs.umn.edu
This commit is contained in:
2002-12-14 15:38:45 +00:00
parent cfceb16f4a
commit 4a9377a861
11 changed files with 48 additions and 48 deletions

View File

@@ -77,12 +77,12 @@ GEN_INLINE MT_Vector3 MT_Vector3::safe_normalized() const {
*this / len;
}
GEN_INLINE void MT_Vector3::scale(MT_Scalar x, MT_Scalar y, MT_Scalar z) {
m_co[0] *= x; m_co[1] *= y; m_co[2] *= z;
GEN_INLINE void MT_Vector3::scale(MT_Scalar xx, MT_Scalar yy, MT_Scalar zz) {
m_co[0] *= xx; m_co[1] *= yy; m_co[2] *= zz;
}
GEN_INLINE MT_Vector3 MT_Vector3::scaled(MT_Scalar x, MT_Scalar y, MT_Scalar z) const {
return MT_Vector3(m_co[0] * x, m_co[1] * y, m_co[2] * z);
GEN_INLINE MT_Vector3 MT_Vector3::scaled(MT_Scalar xx, MT_Scalar yy, MT_Scalar zz) const {
return MT_Vector3(m_co[0] * xx, m_co[1] * yy, m_co[2] * zz);
}
GEN_INLINE MT_Scalar MT_Vector3::angle(const MT_Vector3& v) const {