Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TInterval
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TInterval () |
Default constructor.The interval is invalid | Math/Interval.h | |
TInterval
(
ElementType InMin, |
Creates and initializes a new interval with the specified lower and upper bounds. | Math/Interval.h |
TInterval()
Description
Default constructor.
The interval is invalid
| Name | TInterval |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Interval.h |
| Include Path | #include "Math/Interval.h" |
TInterval()
TInterval(ElementType, ElementType)
Description
Creates and initializes a new interval with the specified lower and upper bounds.
| Name | TInterval |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Interval.h |
| Include Path | #include "Math/Interval.h" |
TInterval
(
ElementType InMin,
ElementType InMax
)
Parameters
| Name | Remarks |
|---|---|
| InMin | The lower bound of the constructed interval. |
| InMax | The upper bound of the constructed interval. |