GLM
0.9.5
|
Functions | |
template<typename T > | |
T | fastExp (const T &x) |
template<typename T > | |
T | fastExp2 (const T &x) |
template<typename T > | |
T | fastLn (const T &x) |
template<typename T > | |
T | fastLog (const T &x) |
template<typename T > | |
T | fastLog2 (const T &x) |
template<typename genType > | |
genType | fastPow (genType const &x, genType const &y) |
template<typename genTypeT , typename genTypeU > | |
genTypeT | fastPow (genTypeT const &x, genTypeU const &y) |
Fast but less accurate implementations of exponential based functions.
<glm/gtx/fast_exponential.hpp> need to be included to use these functionalities.
T glm::fastExp | ( | const T & | x | ) |
Faster than the common exp function but less accurate.
T glm::fastExp2 | ( | const T & | x | ) |
Faster than the common exp2 function but less accurate.
T glm::fastLn | ( | const T & | x | ) |
Faster than the common ln function but less accurate.
T glm::fastLog | ( | const T & | x | ) |
Faster than the common log function but less accurate.
T glm::fastLog2 | ( | const T & | x | ) |
Faster than the common log2 function but less accurate.
genType glm::fastPow | ( | genType const & | x, |
genType const & | y | ||
) |
Faster than the common pow function but less accurate.
genTypeT glm::fastPow | ( | genTypeT const & | x, |
genTypeU const & | y | ||
) |
Faster than the common pow function but less accurate.