main.cesium.Interval.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
@file:Suppress(
"EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)
package cesium
/**
* Represents the closed interval [start, stop].
* @see Online Documentation
*
* @constructor
* @property [start] The beginning of the interval.
* Default value - `0.0`
* @property [stop] The end of the interval.
* Default value - `0.0`
* @see Online Documentation
*/
@JsName("\$cesium__Interval")
external class Interval(
var start: Double = definedExternally,
var stop: Double = definedExternally,
)