UNPKG

tweenkle

Version:

Lightweight tweening library for all your tweening and animation needs.

11 lines (8 loc) 264 B
"use strict"; exports.__esModule = true; exports["default"] = void 0; var Linear = function Linear(time, beginningValue, changeValue, duration) { return beginningValue + changeValue * (time / duration); }; var _default = Linear; exports["default"] = _default;