operator - method
Vector3
operator -(
- Vector3 other
inherited
Subtract two vectors.
Implementation
Vector3 operator -(Vector3 other) => clone()..sub(other);
Subtract two vectors.
Vector3 operator -(Vector3 other) => clone()..sub(other);