Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TRange
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Compute the hull of many ranges. | Math/Range.h | ||
| Compute the hull of two ranges.The hull is the smallest range that contains both ranges. | Math/Range.h |
Hull(const TArray< TRange > &)
Description
Compute the hull of many ranges.
| Name | Hull |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Range.h |
| Include Path | #include "Math/Range.h" |
static TRange Hull
(
const TArray < TRange > & Ranges
)
The hull.
Parameters
| Name | Remarks |
|---|---|
| Ranges | The ranges to hull. |
See Also
-
Intersection
-
Union
Hull(const TRange &, const TRange &)
Description
Compute the hull of two ranges.
The hull is the smallest range that contains both ranges.
| Name | Hull |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Range.h |
| Include Path | #include "Math/Range.h" |
static TRange Hull
(
const TRange & X,
const TRange & Y
)
The hull.
Parameters
| Name | Remarks |
|---|---|
| X | The first range. |
| Y | The second range. |
See Also
-
Intersection
-
Union