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 circIn(t) { return 1.0 - Math.sqrt(1.0 - t * t); } exports.circIn = circIn;