math-helper.d.ts 236 B

12345
  1. /** Helper with mathematical functions */
  2. export declare class MathHelper {
  3. static roundToPrecisionLimit(value: number, precisionLimit: number): number;
  4. static clampToRange(value: number, floor: number, ceil: number): number;
  5. }