operator - method

Vector3 operator - (Vector3 other)

Subtract two vectors.

Implementation

Vector3 operator -(Vector3 other) => clone()..sub(other);