Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TVector2
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TVector2< T > operator*=
(
T Scale |
Scales this vector. | Math/Vector2D.h | |
TVector2< T > operator*=
(
const TVector2< T >& V |
Multiplies this vector with another vector, using component-wise multiplication. | Math/Vector2D.h |
operator*=(T)
Description
Scales this vector.
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Vector2D.h |
| Include Path | #include "Math/Vector2D.h" |
TVector2 < T > operator*=
(
T Scale
)
Copy of the vector after scaling.
Parameters
| Name | Remarks |
|---|---|
| Scale | The scale to multiply vector by. |
operator*=(const TVector2< T > &)
Description
Multiplies this vector with another vector, using component-wise multiplication.
| Name | operator*= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Vector2D.h |
| Include Path | #include "Math/Vector2D.h" |
TVector2 < T > operator*=
(
const TVector2 < T > & V
)
Copy of the vector after multiplication.
Parameters
| Name | Remarks |
|---|---|
| V | The vector to multiply with. |