Subtract other from this, as if both points were vectors.
other
this
Returns the resulting "vector" as a Point.
Point<T> operator -(Point<T> other) { return new Point<T>(x - other.x, y - other.y); }