dart_flubber library

Functions

interpolate(List<Point<num>> start, List<Point<num>> stop, num t, {bool closed = true}) List<Point<num>>
Interpolates from start to stop with the interpolation parameter t.
interpolator(List<Point<num>> start, List<Point<num>> stop, {bool closed = true}) Interpolator
Creates a function that interpolates from start to stop.

Typedefs

Interpolator = List<Point<num>> Function(num)