main.cesium.HeightReference.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
@file:JsModule("cesium")
package cesium
/**
* Represents the position relative to the terrain.
* @see Online Documentation
*/
external enum class HeightReference {
/**
* The position is absolute.
*/
NONE,
/**
* The position is clamped to the terrain.
*/
CLAMP_TO_GROUND,
/**
* The position height is the height above the terrain.
*/
RELATIVE_TO_GROUND,
;
}