0.9.9 API documenation
Functions
GLM_EXT_vector_relational

Include <glm/ext/vector_relational.hpp> to use the features of this extension. More...

Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > closeBounded (vec< L, T, Q > const &Value, vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)
 Returns whether vector components values are within an interval. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > 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<typename genType >
GLM_FUNC_DECL bool equal (genType const &x, genType const &y, genType const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > 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<typename genType >
GLM_FUNC_DECL bool notEqual (genType const &x, genType const &y, genType const &epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > openBounded (vec< L, T, Q > const &Value, vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)
 Returns whether vector components values are within an interval. More...
 

Detailed Description

Include <glm/ext/vector_relational.hpp> to use the features of this extension.

Comparison functions for a user defined epsilon values.

Function Documentation

◆ closeBounded()

GLM_FUNC_DECL vec<L, bool, Q> glm::closeBounded ( vec< L, T, Q > const &  Value,
vec< L, T, Q > const &  Min,
vec< L, T, Q > const &  Max 
)

Returns whether vector components values are within an interval.

A closed interval includes its endpoints, and is denoted with square brackets.

Template Parameters
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
See also
GLM_EXT_vector_relational

◆ equal() [1/3]

GLM_FUNC_DECL vec<L, bool, Q> glm::equal ( vec< L, T, Q > const &  x,
vec< L, T, Q > const &  y,
T const &  epsilon 
)

Returns the component-wise comparison of |x - y| < epsilon.

True if this expression is satisfied.

Template Parameters
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
See also
GLM_EXT_vector_relational

◆ equal() [2/3]

GLM_FUNC_DECL 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.

True if this expression is satisfied.

Template Parameters
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
See also
GLM_EXT_vector_relational

◆ equal() [3/3]

GLM_FUNC_DECL bool glm::equal ( genType const &  x,
genType const &  y,
genType const &  epsilon 
)

Returns the component-wise comparison of |x - y| < epsilon.

True if this expression is satisfied.

Template Parameters
genTypeFloating-point or integer scalar types
See also
GLM_EXT_vector_relational

◆ notEqual() [1/3]

GLM_FUNC_DECL vec<L, bool, Q> glm::notEqual ( vec< L, T, Q > const &  x,
vec< L, T, Q > const &  y,
T const &  epsilon 
)

Returns the component-wise comparison of |x - y| < epsilon.

True if this expression is not satisfied.

Template Parameters
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
See also
GLM_EXT_vector_relational

◆ notEqual() [2/3]

GLM_FUNC_DECL 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.

True if this expression is not satisfied.

Template Parameters
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
See also
GLM_EXT_vector_relational

◆ notEqual() [3/3]

GLM_FUNC_DECL bool glm::notEqual ( genType const &  x,
genType const &  y,
genType const &  epsilon 
)

Returns the component-wise comparison of |x - y| >= epsilon.

True if this expression is not satisfied.

Template Parameters
genTypeFloating-point or integer scalar types
See also
GLM_EXT_vector_relational

◆ openBounded()

GLM_FUNC_DECL vec<L, bool, Q> glm::openBounded ( vec< L, T, Q > const &  Value,
vec< L, T, Q > const &  Min,
vec< L, T, Q > const &  Max 
)

Returns whether vector components values are within an interval.

A open interval excludes its endpoints, and is denoted with square brackets.

Template Parameters
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
See also
GLM_EXT_vector_relational