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