operator * method

Radius operator * (double operand)

Multiplication operator.

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

Implementation

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