1
0
Fork 0

Added float comparison warning overrides to Vector3::hasNonZeroLength

This commit is contained in:
Woazboat 2015-05-06 01:53:28 +02:00
parent ed404bc2f6
commit eb84ffe5a6
1 changed files with 16 additions and 7 deletions

View File

@ -80,7 +80,16 @@ public:
inline bool HasNonZeroLength(void) const
{
#ifndef __GNUC__
#pragma clang diagnostics push
#pragma clang diagnostics ignored "-Wfloat-equal"
#endif
return ((x != 0) || (y != 0) || (z != 0));
#ifndef __GNUC__
#pragma clang diagnostics pop
#endif
}
inline double Length(void) const
@ -127,16 +136,16 @@ public:
// Perform a strict comparison of the contents - we want to know whether this object is exactly equal
// To perform EPS-based comparison, use the EqualsEps() function
#ifndef __GNUC__
#pragma clang diagnostics push
#pragma clang diagnostics ignored "-Wfloat-equal"
#endif
#ifndef __GNUC__
#pragma clang diagnostics push
#pragma clang diagnostics ignored "-Wfloat-equal"
#endif
return !((x != a_Rhs.x) || (y != a_Rhs.y) || (z != a_Rhs.z));
#ifndef __GNUC__
#pragma clang diagnostics pop
#endif
#ifndef __GNUC__
#pragma clang diagnostics pop
#endif
}
inline bool EqualsEps(const Vector3<T> & a_Rhs, T a_Eps) const