Navigation
API > API/Runtime > API/Runtime/Navmesh
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
T rcMin
(
T a, |
Returns the minimum of two values. | Recast/Recast.h | |
rcReal rcMin
(
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 |
rcMin(T, T)
Description
Returns the minimum of two values.
| Name | rcMin |
| Type | function |
| Header File | /Engine/Source/Runtime/Navmesh/Public/Recast/Recast.h |
| Include Path | #include "Recast/Recast.h" |
template<class T>
T rcMin
(
T a,
T b
)
The minimum of the two values.
Parameters
| Name | Remarks |
|---|---|
| a | Value A |
| b | Value B |
rcMin(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 | rcMin |
| Type | function |
| Header File | /Engine/Source/Runtime/Navmesh/Public/Recast/Recast.h |
| Include Path | #include "Recast/Recast.h" |
rcReal rcMin
(
rcReal a,
rcReal b
)