UNPKG

@gamestdio/easing

Version:

Collection of easing equations for JavaScript / TypeScript

8 lines (7 loc) 227 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const bounce_out_1 = require("./bounce-out"); function bounceIn(t) { return 1.0 - bounce_out_1.bounceOut(1.0 - t); } exports.bounceIn = bounceIn;