UNPKG

@drozdik.m/lerp

Version:
7 lines (6 loc) 236 B
exports.__esModule = true; exports.EaseOutCirc = function (from, to, currentFrame, totalFrames) { currentFrame /= totalFrames; currentFrame--; return (to - from) * Math.sqrt(1 - currentFrame * currentFrame) + from; };