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