Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FGenericPlatformMath
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static float LogX
(
float Base, |
GenericPlatform/GenericPlatformMath.h | ||
static double LogX
(
double Base, |
GenericPlatform/GenericPlatformMath.h | ||
static decltype(X *Y) LogX
(
Arg1 X, |
GenericPlatform/GenericPlatformMath.h |
LogX(float, float)
| Name | LogX |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformMath.h |
| Include Path | #include "GenericPlatform/GenericPlatformMath.h" |
static float LogX
(
float Base,
float Value
)
LogX(double, double)
| Name | LogX |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformMath.h |
| Include Path | #include "GenericPlatform/GenericPlatformMath.h" |
static double LogX
(
double Base,
double Value
)
LogX(Arg1, Arg2)
| Name | LogX |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformMath.h |
| Include Path | #include "GenericPlatform/GenericPlatformMath.h" |
template<typename Arg1, typename Arg2, std::enable_if_t<((std::is_floating_point_v< Arg1 >||std::is_floating_point_v< Arg2 >) &&!std::is_same_v< Arg1, Arg2 >), int >>
static decltype(X *Y) LogX
(
Arg1 X,
Arg2 Y
)