|
| void | trUtil::Math::SinCos (double x, double &sinVal, double &cosVal) |
| | Takes a Value X and outputs its Sin and Cos by reference. More...
|
| |
| void | trUtil::Math::SinCos (float x, float &sinVal, float &cosVal) |
| | Takes a Value X and outputs its Sin and Cos by reference. More...
|
| |
| double | trUtil::Math::Deg2Rad (double degree) |
| | Takes Degrees and converts them to Radians. More...
|
| |
| float | trUtil::Math::Deg2Rad (float degree) |
| | Takes Degrees and converts them to Radians. More...
|
| |
| double | trUtil::Math::Rad2Deg (double radian) |
| | Takes Radians and converts them to Degrees. More...
|
| |
| float | trUtil::Math::Rad2Deg (float radian) |
| | Takes Radians and converts them to Degrees. More...
|
| |
| double | trUtil::Math::CheckState (double state) |
| | Checks if State is = to 0, less then 0 or greater, and outputs -1, 0, 1. More...
|
| |
| float | trUtil::Math::CheckState (float state) |
| | Checks if State is = to 0, less then 0 or greater, and outputs -1, 0, 1. More...
|
| |
| template<typename T > |
| T | trUtil::Math::Lerp (T from, T to, T alpha) |
| | Linear Interpolation function. More...
|
| |