|
| static bool | IsNaN (const RealType Value) |
| |
| static bool | IsFinite (const RealType Value) |
| |
| static RealType | Abs (const RealType Value) |
| |
| static RealType | Clamp (const RealType Value, const RealType ClampMin, const RealType ClampMax) |
| |
| static RealType | Sign (const RealType Value) |
| |
| static int32 | SignAsInt (const RealType Value) |
| |
| static RealType | SignNonZero (const RealType Value) |
| |
| static RealType | Max (const RealType A, const RealType B) |
| |
| static RealType | Max3 (const RealType A, const RealType B, const RealType C) |
| |
| static int32 | Max3Index (const RealType A, const RealType B, const RealType C) |
| |
| static RealType | Min (const RealType A, const RealType B) |
| |
| static RealType | Min3 (const RealType A, const RealType B, const RealType C) |
| |
| static int32 | Min3Index (const RealType A, const RealType B, const RealType C) |
| |
| static void | MinMax (RealType A, RealType B, RealType C, RealType &MinOut, RealType &MaxOut) |
| |
| static RealType | SmoothMin (RealType A, RealType B, RealType BlendExtent) |
| |
| static RealType | SmoothMax (RealType A, RealType B, RealType BlendExtent) |
| |
| static RealType | Sqrt (const RealType Value) |
| |
| static RealType | Cbrt (const RealType Value) |
| |
| static RealType | Tan (const RealType Value) |
| |
| static RealType | Atan2 (const RealType ValueY, const RealType ValueX) |
| |
| static RealType | Sin (const RealType Value) |
| |
| static RealType | Cos (const RealType Value) |
| |
| static RealType | ACos (const RealType Value) |
| |
| static RealType | Floor (const RealType Value) |
| |
| static RealType | Ceil (const RealType Value) |
| |
| static RealType | Round (const RealType Value) |
| |
| static RealType | Pow (const RealType Value, const RealType Power) |
| |
| static RealType | Exp (const RealType Power) |
| |
| static RealType | Log (const RealType Value) |
| |
| static RealType | Lerp (const RealType A, const RealType B, RealType Alpha) |
| |
| static RealType | Atan2Positive (const RealType Y, const RealType X) |
| |