operator + method

Vector3 operator +(
  1. Vector3 other
)

Add two vectors.

Implementation

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