Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIntVector2
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TIntVector2 operator*
(
const TIntVector2& Other |
Gets the result of component-wise multiplication of this vector by another. | Math/IntVector.h | |
TIntVector2 operator*
(
IntType Scale |
Gets the result of scaling on this vector. | Math/IntVector.h |
operator*(const TIntVector2 &)
Description
Gets the result of component-wise multiplication of this vector by another.
| Name | operator* |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntVector.h |
| Include Path | #include "Math/IntVector.h" |
TIntVector2 operator*
(
const TIntVector2 & Other
) const
The result of multiplication.
Parameters
| Name | Remarks |
|---|---|
| Other | The vector to multiply with. |
operator*(IntType)
Description
Gets the result of scaling on this vector.
| Name | operator* |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/IntVector.h |
| Include Path | #include "Math/IntVector.h" |
TIntVector2 operator*
(
IntType Scale
) const
A new scaled int vector.
Parameters
| Name | Remarks |
|---|---|
| Scale | What to multiply the vector by. |