All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.cesium.PolygonHierarchy.kt Maven / Gradle / Ivy

There is a newer version: 1.90.0-10
Show newest version
// 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,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy