Modulo (remainder) operator. Returns a point whose coordinates are the remainder of 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);