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