/** * Contains commonly used variables and properties for math operations */ export declare class MathUtil { /** Multiply to convert radians to degrees */ static readonly RADTDEG: number; /** Multiply to convert from degrees to radians */ static readonly DEGTRAD: number; /** * Clamps a number between min and max * @param value The value to clamp * @param min The minimum value to clamp to * @param max The maximum value to clamp to */ static clamp(value: number, min: number, max: number): number; }