Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FGenericPlatformMath
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static void GetMinMax
(
T& Min, |
Sort input values to be Min and Max | GenericPlatform/GenericPlatformMath.h | |
static void GetMinMax
(
const T& A, |
Sort input A & B values into OutMin & OutMax | GenericPlatform/GenericPlatformMath.h |
GetMinMax(T &, T &)
Description
Sort input values to be Min and Max
| Name | GetMinMax |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformMath.h |
| Include Path | #include "GenericPlatform/GenericPlatformMath.h" |
template<class T>
static void GetMinMax
(
T & Min,
T & Max
)
GetMinMax(const T &, const T &, T &, T &)
Description
Sort input A & B values into OutMin & OutMax
| Name | GetMinMax |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformMath.h |
| Include Path | #include "GenericPlatform/GenericPlatformMath.h" |
template<class T>
static void GetMinMax
(
const T & A,
const T & B,
T & OutMin,
T & OutMax
)