@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.
18 lines (17 loc) • 420 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
* @ignorenaming
*/
export declare const Epsilon = 0.001;