Division operator. Returns a point whose coordinates are the coordinates of the left-hand-side operand (a point) divided by the scalar right-hand-side operand (a double).
Source
Point operator /(double operand) => new Point(x / operand, y / operand);