Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIntVector3
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TIntVector3 () |
Default constructor (no initialization). | Math/IntVector.h | |
TIntVector3
(
IntType InValue |
Constructor | Math/IntVector.h | |
TIntVector3
(
TIntVector4< IntType > Other |
Math/IntVector.h | ||
TIntVector3
(
TVector< FloatType > InVector |
Constructor | Math/IntVector.h | |
| Constructor | Math/IntVector.h | ||
TIntVector3
(
TIntVector3< OtherIntType > Other |
Converts to another int type. Checks that the cast will succeed. | Math/IntVector.h | |
PRAGMA_DISABLE_DEPRECATION_WARNINGS TIntVector3
(
TIntVector3&& |
Workaround for clang deprecation warnings for deprecated XYZ member in implicitly-defined special member functions. | Math/IntVector.h | |
TIntVector3
(
const TIntVector3& |
Math/IntVector.h | ||
TIntVector3
(
IntType InX, |
Creates and initializes a new instance with the specified coordinates. | Math/IntVector.h |
TIntVector3()
Description
Default constructor (no initialization).
| Name | TIntVector3 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntVector.h |
| Include Path | #include "Math/IntVector.h" |
TIntVector3()
TIntVector3(IntType)
Description
Constructor
| Name | TIntVector3 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntVector.h |
| Include Path | #include "Math/IntVector.h" |
TIntVector3
(
IntType InValue
)
Parameters
| Name | Remarks |
|---|---|
| InValue | replicated to all components |
TIntVector3(TIntVector4< IntType >)
| Name | TIntVector3 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntVector.h |
| Include Path | #include "Math/IntVector.h" |
TIntVector3
(
TIntVector4 < IntType > Other
)
TIntVector3(TVector< FloatType >)
Description
Constructor
| Name | TIntVector3 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntVector.h |
| Include Path | #include "Math/IntVector.h" |
| Source | /Engine/Source/Runtime/Core/Public/Math/Vector.h |
template<typename FloatType>
TIntVector3
(
TVector < FloatType > InVector
)
Parameters
| Name | Remarks |
|---|---|
| InVector | float vector converted to int |
TIntVector3(EForceInit)
Description
Constructor
| Name | TIntVector3 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntVector.h |
| Include Path | #include "Math/IntVector.h" |
TIntVector3
(
EForceInit
)
Parameters
| Name | Remarks |
|---|---|
| EForceInit | Force init enum |
TIntVector3(TIntVector3< OtherIntType >)
Description
Converts to another int type. Checks that the cast will succeed.
| Name | TIntVector3 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntVector.h |
| Include Path | #include "Math/IntVector.h" |
template<typename OtherIntType>
TIntVector3
(
TIntVector3 < OtherIntType > Other
)
TIntVector3(TIntVector3 &&)
Description
Workaround for clang deprecation warnings for deprecated XYZ member in implicitly-defined special member functions.
| Name | TIntVector3 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntVector.h |
| Include Path | #include "Math/IntVector.h" |
PRAGMA_DISABLE_DEPRECATION_WARNINGS TIntVector3
(
TIntVector3 &&
)
TIntVector3(const TIntVector3 &)
| Name | TIntVector3 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntVector.h |
| Include Path | #include "Math/IntVector.h" |
TIntVector3
(
const TIntVector3 &
)
TIntVector3(IntType, IntType, IntType)
Description
Creates and initializes a new instance with the specified coordinates.
| Name | TIntVector3 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntVector.h |
| Include Path | #include "Math/IntVector.h" |
TIntVector3
(
IntType InX,
IntType InY,
IntType InZ
)
Parameters
| Name | Remarks |
|---|---|
| InX | The x-coordinate. |
| InY | The y-coordinate. |
| InZ | The z-coordinate. |