Subtracts another point (vector subtraction).
Point<num> operator -(Point<num> other) => Point(x: x - other.x, y: y - other.y);