@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
19 lines (18 loc) • 560 B
TypeScript
/**
* Constant used to convert a value to gamma space
*/
export declare const ToGammaSpace: number;
/**
* Constant used to convert a value to linear space
*/
export declare const ToLinearSpace = 2.2;
/**
* Constant Golden Ratio value in Babylon.js
*/
export declare const PHI: number;
/**
* Constant used to define the minimal number value in Babylon.js
* Exported as "let" so advanced users can override the epsilon value in supported build targets (for example via the global BABYLON.Epsilon)
* @ignorenaming
*/
export declare let Epsilon: number;