UNPKG

@drozdik.m/lerp

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