|
| template<typename T > |
| double | Size (const T &Value) |
| |
| template<typename T > |
| double | SizeSquared (const T &Value) |
| |
| template<typename T > |
| double | Distance (const T &A, const T &B) |
| |
| template<typename T > |
| double | CentripetalDistance (const T &A, const T &B) |
| |
| template<typename T > |
| double | Dot (const T &A, const T &B) |
| |
| template<typename T > |
| T | GetSafeNormal (const T &Value) |
| |
| template<typename T > |
| bool | Equals (const T &A, const T &B, float Tolerance=UE_KINDA_SMALL_NUMBER) |
| |
| template<int32 N> |
| const TArray< double > & | GetFactorialTable () |
| |
| template<int32 N> |
| const TArray< TArray< double > > & | GetBinomialTable () |
| |
| template<typename ValueType > |
| float | FindNearestPoint_Cubic (const TArrayView< ValueType > Coeffs, float StartParam, float EndParam, float &OutSquaredDistance) |
| |
| template<typename ValueType > |
| ValueType | ComputeFirstDerivativeCentralDifference (const TSplineInterface< ValueType > &Spline, double Param, double Step=UE_KINDA_SMALL_NUMBER) |
| |
| template<typename ValueType > |
| ValueType | ComputeSecondDerivativeCentralDifference (const TSplineInterface< ValueType > &Spline, double Param, double Step=0.1) |
| |