|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::pow (vec< L, T, Q > const &base, vec< L, T, Q > const &exponent) |
| Returns 'base' raised to the power 'exponent'. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::exp (vec< L, T, Q > const &v) |
| Returns the natural exponentiation of x, i.e., e^x. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::log (vec< L, T, Q > const &v) |
| Returns the natural logarithm of v, i.e., returns the value y which satisfies the equation x = e^y. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::exp2 (vec< L, T, Q > const &v) |
| Returns 2 raised to the v power. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::log2 (vec< L, T, Q > const &v) |
| Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::sqrt (vec< L, T, Q > const &v) |
| Returns the positive square root of v. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::inversesqrt (vec< L, T, Q > const &v) |
| Returns the reciprocal of the positive square root of v. More...
|
|