You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
390 B
JavaScript
26 lines
390 B
JavaScript
/**
|
|
* The encoding that is used for a heightmap
|
|
*
|
|
* @enum {Number}
|
|
*/
|
|
var HeightmapEncoding = {
|
|
/**
|
|
* No encoding
|
|
*
|
|
* @type {Number}
|
|
* @constant
|
|
*/
|
|
NONE: 0,
|
|
|
|
/**
|
|
* LERC encoding
|
|
*
|
|
* @type {Number}
|
|
* @constant
|
|
*
|
|
* @see {@link https://github.com/Esri/lerc|The LERC specification}
|
|
*/
|
|
LERC: 1,
|
|
};
|
|
export default Object.freeze(HeightmapEncoding);
|