lerpDoubleList function

List<double>? lerpDoubleList(
  1. List<double>? a,
  2. List<double>? b,
  3. double t
)

Lerps double list based on t value, check Tween.lerp.

Implementation

List<double>? lerpDoubleList(List<double>? a, List<double>? b, double t) =>
    lerpList(a, b, t, lerp: lerpNonNullDouble);