UNPKG

@gamestdio/easing

Version:

Collection of easing equations for JavaScript / TypeScript

7 lines (6 loc) 166 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function sineOut(t) { return Math.sin(t * Math.PI / 2); } exports.sineOut = sineOut;