lerpBarGroupList static method

List<BarGroup> lerpBarGroupList(
  1. List<BarGroup>? current,
  2. List<BarGroup> target,
  3. double t
)

Lerps between two Lists of BarGroup for a factor t.

Implementation

static List<BarGroup> lerpBarGroupList(
  List<BarGroup>? current,
  List<BarGroup> target,
  double t,
) =>
    lerpList(current, target, t, lerp: lerp);