Adds another point (vector addition).
Point<num> operator +(Point<num> other) => Point(x: x + other.x, y: y + other.y);