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

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

There is a newer version: 1.90.0-10
Show newest version
// Automatically generated - do not modify!

package cesium

/**
 * Determines the function used to compare two depths for the depth test.
 * @see Online Documentation
 */

@JsName("\$cesium__DepthFunction")
external object /* enum */ DepthFunction {

    /**
     * The depth test never passes.
     */
    val NEVER: DepthFunction

    /**
     * The depth test passes if the incoming depth is less than the stored depth.
     */
    val LESS: DepthFunction

    /**
     * The depth test passes if the incoming depth is equal to the stored depth.
     */
    val EQUAL: DepthFunction

    /**
     * The depth test passes if the incoming depth is less than or equal to the stored depth.
     */
    val LESS_OR_EQUAL: DepthFunction

    /**
     * The depth test passes if the incoming depth is greater than the stored depth.
     */
    val GREATER: DepthFunction

    /**
     * The depth test passes if the incoming depth is not equal to the stored depth.
     */
    val NOT_EQUAL: DepthFunction

    /**
     * The depth test passes if the incoming depth is greater than or equal to the stored depth.
     */
    val GREATER_OR_EQUAL: DepthFunction

    /**
     * The depth test always passes.
     */
    val ALWAYS: DepthFunction
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy