computeRadius method

double computeRadius(
  1. double angle
)
override

All spirals are a function of the angle: r=f(θ).

Implementation

double computeRadius(double angle) => a + b * math.sqrt(angle);