operator - method

Vector operator -(
  1. Vector b
)

Implementation

Vector operator -(Vector b) => Vector(x - b.x, y - b.y, z - b.z);