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