UNPKG

@drozdik.m/lerp

Version:
5 lines (4 loc) 188 B
exports.__esModule = true; exports.EaseInExpo = function (from, to, currentFrame, totalFrames) { return (to - from) * Math.pow(2, 10 * (currentFrame / totalFrames - 1)) + from; };