/** * Machine epsilon used in calculations. * * @see https://en.wikipedia.org/wiki/Machine_epsilon */ export declare const EPSILON: number; /** * The largest number that can be represented in JavaScript. */ export declare const MAXIMUM_VALUE: number; /** * Pi/2 */ export declare const M_PI2: number; /** * Pi * 2 */ export declare const M_2PI: number;