UNPKG

@gamestdio/easing

Version:

Collection of easing equations for JavaScript / TypeScript

8 lines (7 loc) 180 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function cubicOut(t) { var f = t - 1.0; return f * f * f + 1.0; } exports.cubicOut = cubicOut;