minor type in simdvector3, no picking on fixed objects, no run-time type info

This commit is contained in:
ejcoumans
2006-06-21 05:22:43 +00:00
parent ee4ed8b945
commit 324b18b719
98 changed files with 122 additions and 122 deletions

View File

@@ -183,7 +183,7 @@ operator+(const SimdVector3& v1, const SimdVector3& v2)
SIMD_FORCE_INLINE SimdVector3
operator*(const SimdVector3& v1, const SimdVector3& v2)
{
return SimdVector3(v1.x() * v2.x(), v1.y() * v2.y(), v1.z() *+ v2.z());
return SimdVector3(v1.x() * v2.x(), v1.y() * v2.y(), v1.z() * v2.z());
}
SIMD_FORCE_INLINE SimdVector3