/** * Creates a range array from the min to the max number (inclusive). * @param min * @param max */ export declare function createRange(min: number, max: number): number[]; /** * Makes sure the value n is within the limits of min and max (not inclusive). * @param n * @param min * @param max */ export declare function clamp(n: number, min: number, max: number): number; /** * Uses pythagoras to compute the radius of a circle. * @param a * @param b */ export declare function computeRadius(a: number, b: number): number;