UNPKG

@gamestdio/easing

Version:

Collection of easing equations for JavaScript / TypeScript

7 lines (6 loc) 165 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function circOut(t) { return Math.sqrt(1 - (--t * t)); } exports.circOut = circOut;