summaryrefslogtreecommitdiffstats
path: root/external/include/glm/gtc/epsilon.inl
diff options
context:
space:
mode:
Diffstat (limited to 'external/include/glm/gtc/epsilon.inl')
-rw-r--r--external/include/glm/gtc/epsilon.inl83
1 files changed, 0 insertions, 83 deletions
diff --git a/external/include/glm/gtc/epsilon.inl b/external/include/glm/gtc/epsilon.inl
deleted file mode 100644
index 2478cab..0000000
--- a/external/include/glm/gtc/epsilon.inl
+++ /dev/null
@@ -1,83 +0,0 @@
-/// @ref gtc_epsilon
-/// @file glm/gtc/epsilon.inl
-
-// Dependency:
-#include "quaternion.hpp"
-#include "../vector_relational.hpp"
-#include "../common.hpp"
-#include "../detail/type_vec.hpp"
-
-namespace glm
-{
- template<>
- GLM_FUNC_QUALIFIER bool epsilonEqual
- (
- float const& x,
- float const& y,
- float const& epsilon
- )
- {
- return abs(x - y) < epsilon;
- }
-
- template<>
- GLM_FUNC_QUALIFIER bool epsilonEqual
- (
- double const& x,
- double const& y,
- double const& epsilon
- )
- {
- return abs(x - y) < epsilon;
- }
-
- template<length_t L, typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<L, bool, Q> epsilonEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, T const& epsilon)
- {
- return lessThan(abs(x - y), vec<L, T, Q>(epsilon));
- }
-
- template<length_t L, typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<L, bool, Q> epsilonEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, T, Q> const& epsilon)
- {
- return lessThan(abs(x - y), vec<L, T, Q>(epsilon));
- }
-
- template<>
- GLM_FUNC_QUALIFIER bool epsilonNotEqual(float const& x, float const& y, float const& epsilon)
- {
- return abs(x - y) >= epsilon;
- }
-
- template<>
- GLM_FUNC_QUALIFIER bool epsilonNotEqual(double const& x, double const& y, double const& epsilon)
- {
- return abs(x - y) >= epsilon;
- }
-
- template<length_t L, typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<L, bool, Q> epsilonNotEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, T const& epsilon)
- {
- return greaterThanEqual(abs(x - y), vec<L, T, Q>(epsilon));
- }
-
- template<length_t L, typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<L, bool, Q> epsilonNotEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, T, Q> const& epsilon)
- {
- return greaterThanEqual(abs(x - y), vec<L, T, Q>(epsilon));
- }
-
- template<typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<4, bool, Q> epsilonEqual(tquat<T, Q> const& x, tquat<T, Q> const& y, T const& epsilon)
- {
- vec<4, T, Q> v(x.x - y.x, x.y - y.y, x.z - y.z, x.w - y.w);
- return lessThan(abs(v), vec<4, T, Q>(epsilon));
- }
-
- template<typename T, qualifier Q>
- GLM_FUNC_QUALIFIER vec<4, bool, Q> epsilonNotEqual(tquat<T, Q> const& x, tquat<T, Q> const& y, T const& epsilon)
- {
- vec<4, T, Q> v(x.x - y.x, x.y - y.y, x.z - y.z, x.w - y.w);
- return greaterThanEqual(abs(v), vec<4, T, Q>(epsilon));
- }
-}//namespace glm