public static operator+(v1 as Vector3d<NUMBER>, v2 as Vector3d<NUMBER>) as Vector3d<NUMBER>:
Adds two vectors component by component.
| Parameter | Description |
|---|---|
v1 | Left operand. |
v2 | Right operand. |
A new vector containing the sum.
total = Vector3d<Double>(1.0, 2.0, 3.0) + Vector3d<Double>(4.0, 5.0, 6.0)