glm::gtx::fast_exponential Namespace Reference
GLM_GTX_fast_exponential extension: Fast but less accurate implementations of exponential based functions.
More...
|
Functions |
|
template<typename T> |
| T | fastExp (const T &x) |
| | Faster than the common exp function but less accurate (From GLM_GTX_fast_exponential extension).
|
|
template<typename T> |
| T | fastExp2 (const T &x) |
| | Faster than the common exp2 function but less accurate (From GLM_GTX_fast_exponential extension).
|
|
template<typename T> |
| T | fastLn (const T &x) |
| | Faster than the common ln function but less accurate (From GLM_GTX_fast_exponential extension).
|
|
template<typename T> |
| T | fastLog (const T &x) |
| | Faster than the common log function but less accurate (From GLM_GTX_fast_exponential extension).
|
|
template<typename T> |
| T | fastLog2 (const T &x) |
| | Faster than the common log2 function but less accurate (From GLM_GTX_fast_exponential extension).
|
|
template<typename T, typename U> |
| T | fastPow (const T &x, const U &y) |
| | Faster than the common pow function but less accurate (From GLM_GTX_fast_exponential extension).
|
|
template<typename T> |
| T | fastPow (const T &x, const T &y) |
| | Faster than the common pow function but less accurate (From GLM_GTX_fast_exponential extension).
|
Detailed Description
GLM_GTX_fast_exponential extension: Fast but less accurate implementations of exponential based functions.