lerpCatmullRom static method
Implementation
static Offset Function(double value) lerpCatmullRom({
required List<Offset> controlPoints,
double tension = 0.0,
Offset? startHandle,
Offset? endHandle,
}) =>
CatmullRomSpline.precompute(
controlPoints,
tension: tension,
startHandle: startHandle,
endHandle: endHandle,
).transform;