lerp property

T Function(T a, T b, double t)? lerp
final

Custom interpolation function for complex data types.

Required for types that don't support standard numeric interpolation. Receives start value a, end value b, and progress t (0.0-1.0).

Implementation

final T Function(T a, T b, double t)? lerp;