UNPKG

@drozdik.m/lerp

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