FlukyEngine
Namespaces | Functions
vector_relational.inl File Reference

GLM_EXT_vector_relational More...

#include "../vector_relational.hpp"
#include "../common.hpp"
#include "../detail/qualifier.hpp"
#include "../detail/type_float.hpp"
Include dependency graph for vector_relational.inl:
This graph shows which files directly or indirectly include this file:

Namespaces

 glm
 Core features
 

Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec< L, bool, Q > glm::equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T Epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec< L, bool, Q > glm::equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &Epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec< L, bool, Q > glm::notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T Epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec< L, bool, Q > glm::notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &Epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec< L, bool, Q > glm::equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, int MaxULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec< L, bool, Q > glm::equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &MaxULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec< L, bool, Q > glm::notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, int MaxULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec< L, bool, Q > glm::notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &MaxULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 

Detailed Description

GLM_EXT_vector_relational