|
| static float | Sqrt (float f) |
| |
| static float | Abs (float f) |
| |
| static float | Floor (float f) |
| |
| static float | Cos (float radian) |
| |
| static float | Sin (float radian) |
| |
| static float | Acos (float f) |
| |
| static float | Atan2 (float y, float x) |
| |
| static float | Clamp (float value, float min, float max) |
| |
| static int | Clamp (int value, int min, int max) |
| |
| static float | Min (float a, float b) |
| |
| static float | Max (float a, float b) |
| |
| static bool | IsZero (float f) |
| |
| static bool | IsZero (Vector2 vector2) |
| |
| static float | Sign (float f) |
| |
| static float | Ceil (float f) |
| |
| static float | Round (float f) |
| |
| static float | Lerp (float start, float end, float amount) |
| |
| static Vec3 | GetClosestPointInLineSegmentToLine (Vec3 linePosition, Vec3 lineDirection, Vec3 lineSegmentBegin, Vec3 lineSegmentEnd) |
| |