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