operator - method

Vector4 operator -(
  1. Vector4 other
)

Subtract two vectors.

Implementation

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