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!

@file:JsModule("cesium")

package cesium

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

external enum class ExtrapolationType {

    /**
     * No extrapolation occurs.
     */
    NONE,

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

    /**
     * The value is extrapolated.
     */
    EXTRAPOLATE,

    ;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy