operator + method

Vector3 operator + (Vector3 other)

Add two vectors.

Implementation

Vector3 operator +(Vector3 other) => clone()..add(other);