main.cesium.PolygonHierarchy.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
@file:Suppress(
"EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)
package cesium
/**
* An hierarchy of linear rings which define a polygon and its holes.
* The holes themselves may also have holes which nest inner polygons.
* @see Online Documentation
*
* @constructor
* @property [positions] A linear ring defining the outer boundary of the polygon or hole.
* @property [holes] An array of polygon hierarchies defining holes in the polygon.
* @see Online Documentation
*/
@JsName("\$cesium__PolygonHierarchy")
external class PolygonHierarchy(
var positions: Array = definedExternally,
var holes: Array = definedExternally,
)