lerpTo method
Interpolate between this and next using interpolation factor t (0.0 to 1.0)
Implementation
@override
IDataPointData lerpTo(IDataPointData next, double t) {
if (next is! E) return next;
return lerp(next as E, t) as IDataPointData;
}