math.constants.d.ts 484 B

123456789101112131415161718192021
  1. /**
  2. * Constant used to convert a value to gamma space
  3. * @ignorenaming
  4. */
  5. export declare const ToGammaSpace: number;
  6. /**
  7. * Constant used to convert a value to linear space
  8. * @ignorenaming
  9. */
  10. export declare const ToLinearSpace = 2.2;
  11. /**
  12. * Constant Golden Ratio value in Babylon.js
  13. * @ignorenaming
  14. */
  15. export declare const PHI: number;
  16. /**
  17. * Constant used to define the minimal number value in Babylon.js
  18. * @ignorenaming
  19. */
  20. declare const Epsilon = 0.001;
  21. export { Epsilon };