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

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

The newest version!
// Automatically generated - do not modify!

@file:JsModule("cesium")

@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
 */
external class Interval(
    var start: Double = definedExternally,
    var stop: Double = definedExternally,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy