|
static float | Sqrt (float x) |
|
static float | Sin (float x) |
|
static float | Asin (float x) |
|
static float | Cos (float x) |
|
static float | Acos (float x) |
|
static float | Tan (float x) |
|
static float | Tanh (float x) |
|
static float | Atan (float x) |
|
static float | Atan2 (float y, float x) |
|
static double | Pow (double x, double y) |
|
static double | Pow (float x, double y) |
|
static float | Pow (float x, float y) |
| Returns x raised to the power y.
|
|
static int | PowTwo32 (int x) |
|
static ulong | PowTwo64 (int x) |
|
static bool | IsValidValue (float f) |
| Checks the value.
|
|
static float | Clamp (float value, float minValue, float maxValue) |
| Clamps the input value.
|
|
static float | AngleClamp (float angle) |
|
static float | Lerp (float valueFrom, float valueTo, float amount, float minimumDifference=Epsilon) |
| Linear interpolation between two floating values.
|
|
static float | AngleLerp (float angleFrom, float angleTo, float amount, float minimumDifference=Epsilon) |
|
static int | Round (double f) |
|
static int | Round (float f) |
|
static float | Round (float f, int digits) |
|
static int | Round (int f) |
|
static int | Floor (double f) |
|
static int | Floor (float f) |
|
static int | Floor (int f) |
|
static int | Ceiling (double f) |
|
static int | Ceiling (float f) |
|
static int | Ceiling (int f) |
|
static double | Abs (double f) |
|
static float | Abs (float f) |
|
static int | Abs (int f) |
|
static double | Max (double a, double b) |
|
static float | Max (float a, float b) |
|
static float | Max (float a, int b) |
|
static float | Max (int a, float b) |
|
static int | Max (int a, int b) |
|
static uint | Max (uint a, uint b) |
|
static float | Max (float a, float b, float c) |
|
static double | Min (double a, double b) |
|
static float | Min (float a, float b) |
|
static short | Min (short a, short b) |
|
static int | Min (int a, int b) |
|
static uint | Min (uint a, uint b) |
|
static int | Min (int a, float b) |
|
static int | Min (float a, int b) |
|
static float | Min (float a, float b, float c) |
|
static float | PingPong (float min, float max, float time) |
|
static int | GreatestCommonDivisor (int a, int b) |
| Greatest Common Divisor.
|
|
static float | Log (float a) |
|
static float | Log (float a, float newBase) |
|
static int | Sign (float f) |
|
static int | Sign (int f) |
|
static void | SinCos (float a, out float sa, out float ca) |
|
static float | Log10 (float val) |
|