Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIntVector2
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TIntVector2 & operator*=
(
const TIntVector2& Other |
Multiplies this vector with another vector, using component-wise multiplication. | Math/IntVector.h | |
TIntVector2 & operator*=
(
IntType Scale |
Scales this vector. | Math/IntVector.h |
operator*=(const TIntVector2 &)
Description
Multiplies this vector with another vector, using component-wise multiplication.
| 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
)
Reference to this vector after multiplication.
Parameters
| Name | Remarks |
|---|---|
| Other | The vector to multiply with. |
operator*=(IntType)
Description
Scales 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
)
Reference to this vector after multiplication.
Parameters
| Name | Remarks |
|---|---|
| Scale | What to multiply the vector by. |