Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TVector2
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Gets the result of dividing each component of the vector by a value. | Math/Vector2D.h | ||
| Gets the result of component-wise division of this vector by another. | Math/Vector2D.h |
operator/(T)
Description
Gets the result of dividing each component of the vector by a value.
| 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
) const
The result of division on this vector.
Parameters
| Name | Remarks |
|---|---|
| Scale | How much to divide the vector by. |
operator/(const TVector2< T > &)
Description
Gets the result of component-wise division of this vector by another.
| 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
) const
The result of the division.
Parameters
| Name | Remarks |
|---|---|
| V | The other vector to divide this by. |