operator % method

Radius operator %(
  1. double operand
)

Modulo (remainder) operator.

Returns a radius whose coordinates are the remainder of dividing the coordinates of the left-hand-side operand (a radius) by the scalar right-hand-side operand (a double).

Implementation

Radius operator %(double operand) => Radius.elliptical(x % operand, y % operand);