Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TVector
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Gets the result of scaling the vector (multiplying each component by a value). | Math/Vector.h | ||
| Gets the result of component-wise multiplication of this vector by another. | Math/Vector.h |
operator*(FArg)
Description
Gets the result of scaling the vector (multiplying each component by a value).
| 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
) const
The result of multiplication.
Parameters
| Name | Remarks |
|---|---|
| Scale | What to multiply each component by. |
operator*(const TVector< T > &)
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/Vector.h |
| Include Path | #include "Math/Vector.h" |
TVector < T > operator*
(
const TVector < T > & V
) const
The result of multiplication.
Parameters
| Name | Remarks |
|---|---|
| V | The vector to multiply with. |