EG/Cesium-1.132/packages/engine/Source/Core/HeightmapEncoding.js
2025-08-25 17:48:13 +08:00

26 lines
392 B
JavaScript

/**
* The encoding that is used for a heightmap
*
* @enum {number}
*/
const 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);