UNPKG

@drozdik.m/lerp

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