Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIntPoint
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TIntPoint () |
Default constructor (no initialization). | Math/IntPoint.h | |
TIntPoint
(
IntType InXY |
Create and initialize a new instance with a single int. | Math/IntPoint.h | |
TIntPoint
(
EForceInit |
Create and initialize a new instance to zero. | Math/IntPoint.h | |
| Converts to another int type. Checks that the cast will succeed. | Math/IntPoint.h | ||
| Workaround for clang deprecation warnings for deprecated XY member in implicitly-defined special member functions. | Math/IntPoint.h | ||
| Math/IntPoint.h | |||
TIntPoint
(
IntType InX, |
Create and initialize a new instance with the specified coordinates. | Math/IntPoint.h |
TIntPoint()
Description
Default constructor (no initialization).
| Name | TIntPoint |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntPoint.h |
| Include Path | #include "Math/IntPoint.h" |
TIntPoint()
TIntPoint(IntType)
Description
Create and initialize a new instance with a single int. Both X and Y will be initialized to this value
| Name | TIntPoint |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntPoint.h |
| Include Path | #include "Math/IntPoint.h" |
TIntPoint
(
IntType InXY
)
Parameters
| Name | Remarks |
|---|---|
| InXY | The x and y-coordinate. |
TIntPoint(EForceInit)
Description
Create and initialize a new instance to zero.
| Name | TIntPoint |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntPoint.h |
| Include Path | #include "Math/IntPoint.h" |
TIntPoint
(
EForceInit
)
Parameters
| Name | Remarks |
|---|---|
| EForceInit | Force init enum |
TIntPoint(TIntPoint< OtherIntType >)
Description
Converts to another int type. Checks that the cast will succeed.
| Name | TIntPoint |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntPoint.h |
| Include Path | #include "Math/IntPoint.h" |
template<typename OtherIntType>
TIntPoint
(
TIntPoint < OtherIntType > Other
)
TIntPoint(TIntPoint &&)
Description
Workaround for clang deprecation warnings for deprecated XY member in implicitly-defined special member functions.
| Name | TIntPoint |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntPoint.h |
| Include Path | #include "Math/IntPoint.h" |
PRAGMA_DISABLE_DEPRECATION_WARNINGS TIntPoint
(
TIntPoint &&
)
TIntPoint(const TIntPoint &)
| Name | TIntPoint |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntPoint.h |
| Include Path | #include "Math/IntPoint.h" |
TIntPoint
(
const TIntPoint &
)
TIntPoint(IntType, IntType)
Description
Create and initialize a new instance with the specified coordinates.
| Name | TIntPoint |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntPoint.h |
| Include Path | #include "Math/IntPoint.h" |
TIntPoint
(
IntType InX,
IntType InY
)
Parameters
| Name | Remarks |
|---|---|
| InX | The x-coordinate. |
| InY | The y-coordinate. |