20 #ifndef GLM_ENABLE_EXPERIMENTAL 
   21 #       error "GLM: GLM_GTX_vector_query is an experimetal extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it." 
   24 #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED) 
   25 #       pragma message("GLM: GLM_GTX_vector_query extension included") 
   35         template <
typename T, precision P, 
template <
typename, precision> 
class vecType>
 
   36         GLM_FUNC_DECL 
bool areCollinear(vecType<T, P> 
const & v0, vecType<T, P> 
const & v1, T 
const & 
epsilon);
 
   40         template <
typename T, precision P, 
template <
typename, precision> 
class vecType>
 
   41         GLM_FUNC_DECL 
bool areOrthogonal(vecType<T, P> 
const & v0, vecType<T, P> 
const & v1, T 
const & 
epsilon);
 
   45         template <
typename T, precision P, 
template <
typename, precision> 
class vecType>
 
   50         template <
typename T, precision P, 
template <
typename, precision> 
class vecType>
 
   51         GLM_FUNC_DECL 
bool isNull(vecType<T, P> 
const & v, T 
const & 
epsilon);
 
   55         template <
typename T, precision P, 
template <
typename, precision> 
class vecType>
 
   56         GLM_FUNC_DECL vecType<bool, P> 
isCompNull(vecType<T, P> 
const & v, T 
const & 
epsilon);
 
   60         template <
typename T, precision P, 
template <
typename, precision> 
class vecType>
 
   61         GLM_FUNC_DECL 
bool areOrthonormal(vecType<T, P> 
const & v0, vecType<T, P> 
const & v1, T 
const & 
epsilon);
 
   66 #include "vector_query.inl" 
GLM_FUNC_DECL bool isNormalized(vecType< T, P > const &v, T const &epsilon)
Check whether a vector is normalized. 
GLM_FUNC_DECL bool isNull(vecType< T, P > const &v, T const &epsilon)
Check whether a vector is null. 
GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon()
Return the epsilon constant for floating point types. 
GLM_FUNC_DECL bool areOrthonormal(vecType< T, P > const &v0, vecType< T, P > const &v1, T const &epsilon)
Check whether two vectors are orthonormal. 
GLM_FUNC_DECL vecType< bool, P > isCompNull(vecType< T, P > const &v, T const &epsilon)
Check whether a each component of a vector is null. 
GLM_FUNC_DECL bool areOrthogonal(vecType< T, P > const &v0, vecType< T, P > const &v1, T const &epsilon)
Check whether two vectors are orthogonals. 
GLM_FUNC_DECL bool areCollinear(vecType< T, P > const &v0, vecType< T, P > const &v1, T const &epsilon)
Check whether two vectors are collinears.