main.cesium.WindingOrder.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
@file:JsModule("cesium")
package cesium
/**
* Winding order defines the order of vertices for a triangle to be considered front-facing.
* @see Online Documentation
*/
external enum class WindingOrder {
/**
* Vertices are in clockwise order.
*/
CLOCKWISE,
/**
* Vertices are in counter-clockwise order.
*/
COUNTER_CLOCKWISE,
;
}