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

main.cesium.Interval.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

/**
 * 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,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy