main.cesium.Axis.kt Maven / Gradle / Ivy
The newest version!
// Automatically generated - do not modify!
@file:JsModule("cesium")
package cesium
/**
* An enum describing the x, y, and z axes and helper conversion functions.
* @see Online Documentation
*/
external enum class Axis {
/**
* Denotes the x-axis.
*/
X,
/**
* Denotes the y-axis.
*/
Y,
/**
* Denotes the z-axis.
*/
Z,
;
}