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

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

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

package cesium

/**
 * The horizontal location of an origin relative to an object, e.g., a [Billboard]
 * or [Label].  For example, setting the horizontal origin to `LEFT`
 * or `RIGHT` will display a billboard to the left or right (in screen space)
 * of the anchor position.
 * @see Online Documentation
 */

@JsName("\$cesium__HorizontalOrigin")
external object /* enum */ HorizontalOrigin {

    /**
     * The origin is at the horizontal center of the object.
     */
    val CENTER: HorizontalOrigin

    /**
     * The origin is on the left side of the object.
     */
    val LEFT: HorizontalOrigin

    /**
     * The origin is on the right side of the object.
     */
    val RIGHT: HorizontalOrigin
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy