|
static int | clamp (int value, int min, int max) |
| Clamps a int value to min or max value. More...
|
|
static int64_t | clamp (int64_t value, int64_t min, int64_t max) |
| Clamps a 64 bit int value to min or max value. More...
|
|
static float | clamp (float value, float min, float max) |
| Clamps a float value to min or max value. More...
|
|
static float | sign (float value) |
| Returns sign of value. More...
|
|
static float | square (float value) |
| Do the square product. More...
|
|
static int32_t | abs (int32_t value) |
| Returns absolute value. More...
|
|
static int64_t | abs (int64_t value) |
| Returns absolute value. More...
|
|
static float | abs (float value) |
| Returns absolute value. More...
|
|
static float | acos (float value) |
| Returns the arc cosine of a value. More...
|
|
static float | asin (float value) |
| Returns the arc sine of a value. More...
|
|
static float | atan (float value) |
| Returns the arc tangent of a value. More...
|
|
static float | atan2 (float y, float x) |
| Returns the angle from the conversion of rectangular coordinates to polar coordinates. More...
|
|
static float | ceil (float value) |
| Returns the higher integer value of given value. More...
|
|
static float | cos (float value) |
| Returns the cosine of an angle. More...
|
|
static float | floor (float value) |
| Returns the lower integer value of given value. More...
|
|
static int32_t | max (int32_t value1, int32_t value2) |
| Returns the higher value of given values. More...
|
|
static int64_t | max (int64_t value1, int64_t value2) |
| Returns the higher value of given values. More...
|
|
static float | max (float value1, float value2) |
| Returns the higher value of given values. More...
|
|
static int32_t | min (int32_t value1, int32_t value2) |
| Returns the lesser value of given values. More...
|
|
static int32_t | min (int64_t value1, int64_t value2) |
| Returns the lesser value of given values. More...
|
|
static float | min (float value1, float value2) |
| Returns the lesser value of given values. More...
|
|
static float | round (float value) |
| Returns the rounded value of given float value. More...
|
|
static int32_t | pow (int32_t value1, int32_t value2) |
| Returns the value of the value 1 raised to the power of value2. More...
|
|
static float | pow (float value1, float value2) |
| Returns the value of the value 1 raised to the power of value2. More...
|
|
static float | random () |
| Returns a random value between 0.0 . More...
|
|
static float | sin (float value) |
| Returns the sine of an angle. More...
|
|
static float | sqrt (float value) |
| Returns the square of given value. More...
|
|
static float | tan (float value) |
| Returns the tangent of an angle. More...
|
|
static float | exp (float value) |
| Returns e raised to the given power. More...
|
|
static float | log (float value) |
| Returns the natural (base e) logarithm of value. More...
|
|
static float | mod (float value, float range) |
| Returns modulo of value, so that return value is -range < value < range. More...
|
|
static float | absmod (float value, float range) |
| Returns absolute modulo of value, so that return value is 0.0f <= value < range. More...
|
|
Standard math functions.
- Author
- Andreas Drewke
- Version
- $Id$
Definition at line 20 of file Math.h.