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

commonMain.earth.worldwind.draw.DrawableGroup.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.draw

/**
 * Drawable group provides a standard set of group IDs for organizing WorldWindow drawing into four phases:
 * background, surface, shape, and screen.
 * Accepted values are [BACKGROUND], [SURFACE], [SHAPE] and [SCREEN].
 */
enum class DrawableGroup {
    /**
     * Indicating drawables displayed before everything else. This group is typically
     * used to display atmosphere and stars before all other drawables.
     */
    BACKGROUND,
    /**
     * Indicating drawables displayed on the globe's surface. Surface drawables are
     * displayed beneath shapes and screen drawables.
     */
    SURFACE,
    /**
     * Indicating shape drawables, such as placemarks, polygons and polylines. Shape
     * drawables are displayed on top of surface drawables, but beneath screen drawables.
     */
    SHAPE,
    /**
     * Indicating drawables displayed in the plane of the screen. Screen drawables are
     * displayed on top of everything else.
     */
    SCREEN;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy