Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TVector2
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Gets the result of adding two vectors together. | Math/Vector2D.h | ||
| Gets the result of adding A to each component of the vector. | Math/Vector2D.h |
operator+(const TVector2< T > &)
Description
Gets the result of adding two vectors together.
| 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 adding the vectors together.
Parameters
| Name | Remarks |
|---|---|
| V | The other vector to add to this. |
operator+(T)
Description
Gets the result of adding A to each component of the 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 A
) const
The result of adding A to each component.
Parameters
| Name | Remarks |
|---|---|
| A | T to add to each component. |