UNPKG

lerpjs

Version:

The method of linear interpolation (lerp) to easing animations.

1 lines 36 B
module.exports=(b,c,d)=>(1-d)*b+d*c;