UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

11 lines 369 B
/** * Ken Perlin's suggested improvement on `smoothStep` function * has gentler entry and exit slope * @see https://en.wikipedia.org/wiki/Smoothstep * @param {number} edge0 * @param {number} edge1 * @param {number} x * @returns {number} */ export function smootherStep(edge0: number, edge1: number, x: number): number; //# sourceMappingURL=smootherStep.d.ts.map