computeRadius method

double computeRadius(
  1. double angle
)
override

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

Implementation

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