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

commonMain.earth.worldwind.shape.OrientationMode.kt Maven / Gradle / Ivy

Go to download

The WorldWind Kotlin SDK (WWK) includes the library, examples and tutorials for building multiplatform 3D virtual globe applications for Android, Web and Java.

The newest version!
package earth.worldwind.shape

/**
 * Orientation mode indicates how WorldWind interprets a renderable's orientation value, e.g., tilt and rotate
 * values. Accepted values are [RELATIVE_TO_GLOBE], and [RELATIVE_TO_SCREEN].
 */
enum class OrientationMode {
    /**
     * Indicating that the related value is specified relative to the globe.
     */
    RELATIVE_TO_GLOBE,
    /**
     * Indicating that the related value is specified relative to the plane of the screen.
     */
    RELATIVE_TO_SCREEN;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy