Removed Quaternion/Vector comparison operator

Made no sense


Former-commit-id: 3c2a822cd3142e2bc931021ef8874602630be8cf
This commit is contained in:
Lynix
2012-12-02 00:37:21 +01:00
parent b62ae632a0
commit 5c7a9e1011
8 changed files with 0 additions and 112 deletions

View File

@@ -425,30 +425,6 @@ bool NzVector4<T>::operator!=(const NzVector4& vec) const
return !operator==(vec);
}
template<typename T>
bool NzVector4<T>::operator<(const NzVector4& vec) const
{
return x < vec.x && y < vec.y && z < vec.z && w < vec.w;
}
template<typename T>
bool NzVector4<T>::operator<=(const NzVector4& vec) const
{
return operator<(vec) || operator==(vec);
}
template<typename T>
bool NzVector4<T>::operator>(const NzVector4& vec) const
{
return !operator<=(vec);
}
template<typename T>
bool NzVector4<T>::operator>=(const NzVector4& vec) const
{
return !operator<(vec);
}
template<typename T>
NzVector4<T> NzVector4<T>::UnitX()
{