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

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

// Automatically generated - do not modify!

package cesium

/**
 * Constants to determine how an interpolated value is extrapolated
 * when querying outside the bounds of available data.
 * @see Online Documentation
 */

@JsName("\$cesium__ExtrapolationType")
external object /* enum */ ExtrapolationType {

    /**
     * No extrapolation occurs.
     */
    val NONE: ExtrapolationType

    /**
     * The first or last value is used when outside the range of sample data.
     */
    val HOLD: ExtrapolationType

    /**
     * The value is extrapolated.
     */
    val EXTRAPOLATE: ExtrapolationType
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy