main.cesium.ArcType.kt Maven / Gradle / Ivy
The newest version!
// Automatically generated - do not modify!
@file:JsModule("cesium")
package cesium
/**
* ArcType defines the path that should be taken connecting vertices.
* @see Online Documentation
*/
external enum class ArcType {
/**
* Straight line that does not conform to the surface of the ellipsoid.
*/
NONE,
/**
* Follow geodesic path.
*/
GEODESIC,
/**
* Follow rhumb or loxodrome path.
*/
RHUMB,
;
}