[]
        
(Showing Draft Content)

C1.Framework.Mathematics.Vector.op_Addition

operator + Operator

operator +(Vector, Vector)

Defines the + operator for vector.

Declaration
public static Vector operator +(Vector left, Vector right)
Parameters
Type Name Description
Vector left

A Vector indicates the left operand.

Vector right

A Vector indicates the right operand.

Returns
Type Description
Vector

A Vector that is the add result of the left and right operands.

Remarks

(n1, n2, n3) + (m1, m2, m3) = (n1 + m1, n2 + m2, n3 + m3)