Navigation
API > API/Runtime > API/Runtime/Navmesh
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
T rcMax
(
T a, |
Returns the maximum of two values. | Recast/Recast.h | |
rcReal rcMax
(
rcReal a, |
When used with a mixture of rcReal and other types (in practice floats and doubles mixed here) this overridden function will be preferred by the compiler. | Recast/Recast.h |
rcMax(T, T)
Description
Returns the maximum of two values.
| Name | rcMax |
| Type | function |
| Header File | /Engine/Source/Runtime/Navmesh/Public/Recast/Recast.h |
| Include Path | #include "Recast/Recast.h" |
template<class T>
T rcMax
(
T a,
T b
)
The maximum of the two values.
Parameters
| Name | Remarks |
|---|---|
| a | Value A |
| b | Value B |
rcMax(rcReal, rcReal)
Description
When used with a mixture of rcReal and other types (in practice floats and doubles mixed here) this overridden function will be preferred by the compiler.
| Name | rcMax |
| Type | function |
| Header File | /Engine/Source/Runtime/Navmesh/Public/Recast/Recast.h |
| Include Path | #include "Recast/Recast.h" |
rcReal rcMax
(
rcReal a,
rcReal b
)