gtx_common Module Reference
Provide functions to increase the compatibility with Cg and HLSL languages.
Include < glm/gtx/common.hpp > to use the features of this extension.
Public Member Functions
-
GLM_FUNC_DECL genType::bool_typeisdenormal (genType const &x)
Returns true if x is a denormalized number Numbers whose absolute value is too small to be represented in the normal format are represented in an alternate, denormalized format. This format is less precise but can represent values closer to zero.
genType
Floating-point scalar or vector types.
- See Also
- See Also
-
GLM_FUNC_DECL vec< L, T, Q >fmod (vec< L, T, Q > const &v)
Similar to 'mod' but with a different rounding and integer support. Returns 'x - y * trunc(x/y)' instead of 'x - y * floor(x/y)'
- See Also
- See Also
-
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. A open interval excludes its endpoints, and is denoted with square brackets.
L
Integer 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_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. A closed interval includes its endpoints, and is denoted with square brackets.
L
Integer between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
- See Also