@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
10 lines • 549 B
TypeScript
/**
* Modified bessel function of the first kind zeroth order
* @see https://mathworld.wolfram.com/ModifiedBesselFunctionoftheFirstKind.html
* @see https://computergraphics.stackexchange.com/questions/6393/kaiser-windowed-sinc-filter-for-mip-mapping
* @see https://github.com/terifan/ImageResampler/blob/dbc212ce6aaa769bf3c9623cb6ead58ffd51d76c/src/org/terifan/image_resampler/FilterFactory.java
* @param {number} x
* @returns {number}
*/
export function modified_bessel_i0(x: number): number;
//# sourceMappingURL=modified_bessel_i0.d.ts.map