ScaleSequentialPow<Y> constructor

ScaleSequentialPow<Y>({
  1. List<num>? domain,
  2. required Y interpolator(
    1. num
    ),
})

Returns a new sequential scale with an exponential transform, analogous to a ScalePow.

Implementation

ScaleSequentialPow({super.domain, required super.interpolator}) {
  initPowish();
}