0.9.9 API documenation
|
Go to the source code of this file.
Functions | |
template<typename genType > | |
GLM_FUNC_DECL genType | ceilMultiple (genType Source, genType Multiple) |
Higher multiple number of Source. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | ceilMultiple (vec< L, T, Q > const &Source, vec< L, T, Q > const &Multiple) |
Higher multiple number of Source. More... | |
template<typename genIUType > | |
GLM_FUNC_DECL genIUType | ceilPowerOfTwo (genIUType Value) |
Return the power of two number which value is just higher the input value, round up to a power of two. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | ceilPowerOfTwo (vec< L, T, Q > const &value) |
Return the power of two number which value is just higher the input value, round up to a power of two. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | floorMultiple (genType Source, genType Multiple) |
Lower multiple number of Source. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | floorMultiple (vec< L, T, Q > const &Source, vec< L, T, Q > const &Multiple) |
Lower multiple number of Source. More... | |
template<typename genIUType > | |
GLM_FUNC_DECL genIUType | floorPowerOfTwo (genIUType Value) |
Return the power of two number which value is just lower the input value, round down to a power of two. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | floorPowerOfTwo (vec< L, T, Q > const &value) |
Return the power of two number which value is just lower the input value, round down to a power of two. More... | |
template<typename genIUType > | |
GLM_FUNC_DECL bool | isMultiple (genIUType Value, genIUType Multiple) |
Return true if the 'Value' is a multiple of 'Multiple'. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, bool, Q > | isMultiple (vec< L, T, Q > const &Value, T Multiple) |
Return true if the 'Value' is a multiple of 'Multiple'. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, bool, Q > | isMultiple (vec< L, T, Q > const &Value, vec< L, T, Q > const &Multiple) |
Return true if the 'Value' is a multiple of 'Multiple'. More... | |
template<typename genIUType > | |
GLM_FUNC_DECL bool | isPowerOfTwo (genIUType Value) |
Return true if the value is a power of two number. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, bool, Q > | isPowerOfTwo (vec< L, T, Q > const &value) |
Return true if the value is a power of two number. More... | |
template<typename genType > | |
GLM_FUNC_DECL genType | roundMultiple (genType Source, genType Multiple) |
Lower multiple number of Source. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | roundMultiple (vec< L, T, Q > const &Source, vec< L, T, Q > const &Multiple) |
Lower multiple number of Source. More... | |
template<typename genIUType > | |
GLM_FUNC_DECL genIUType | roundPowerOfTwo (genIUType Value) |
Return the power of two number which value is the closet to the input value. More... | |
template<length_t L, typename T , qualifier Q> | |
GLM_FUNC_DECL vec< L, T, Q > | roundPowerOfTwo (vec< L, T, Q > const &value) |
Return the power of two number which value is the closet to the input value. More... | |
Definition in file round.hpp.