Add two vectors together.
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static Vector operator +(
Vector left,
Vector right
)
Public Shared Operator + (
left As Vector,
right As Vector
) As Vector
public:
static Vector^ operator +(
Vector^ left,
Vector^ right
)
static let inline (+)
left : Vector *
right : Vector : Vector
Parameters
- left
- Type: AGI.Foundation.GeometryVector
The left hand vector to add. - right
- Type: AGI.Foundation.GeometryVector
The right hand vector to add.
Return Value
Type:
VectorA new vector representing the sum of the two vectors.
See Also