Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TVector4
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TVector4< T > operator/=
(
const TVector4< T >& V |
Gets the result of dividing a vector with another Vector (component wise). | Math/Vector4.h | |
TVector4< T > operator/=
(
FArg Scale |
Gets the result of scaling this vector by 1/Scale. | Math/Vector4.h |
operator/=(const TVector4< T > &)
Description
Gets the result of dividing a vector with another Vector (component wise).
| Name | operator/= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Vector4.h |
| Include Path | #include "Math/Vector4.h" |
TVector4 < T > operator/=
(
const TVector4 < T > & V
)
The result of vector multiplication.
Parameters
| Name | Remarks |
|---|---|
| V | The vector to divide with. |
operator/=(FArg)
Description
Gets the result of scaling this vector by 1/Scale.
| Name | operator/= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Vector4.h |
| Include Path | #include "Math/Vector4.h" |
template<typename FArg, std::enable_if_t<(std::is_arithmetic_v< FArg >), int >>
TVector4 < T > operator/=
(
FArg Scale
)
The result of vector scaling by 1/Scale.
Parameters
| Name | Remarks |
|---|---|
| Scale | The inverse scaling factor. |