@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.
21 lines (20 loc) • 471 B
TypeScript
/**
* Constant used to convert a value to gamma space
* @ignorenaming
*/
export declare const ToGammaSpace: number;
/**
* Constant used to convert a value to linear space
* @ignorenaming
*/
export declare const ToLinearSpace = 2.2;
/**
* Constant Golden Ratio value in Babylon.js
* @ignorenaming
*/
export declare const PHI: number;
/**
* Constant used to define the minimal number value in Babylon.js
* @ignorenaming
*/
export declare const Epsilon = 0.001;