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

commonMain.earth.worldwind.render.image.WrapMode.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.

There is a newer version: 1.6.2
Show newest version
package earth.worldwind.render.image

/**
 * Wrap mode indicates how WorldWind displays the contents of an image when attempting to draw a region outside of
 * the image bounds. Accepted values are [CLAMP] and [REPEAT].
 */
enum class WrapMode {
    /**
     * Indicating that the image's edge pixels should be displayed outside of the image bounds.
     */
    CLAMP,
    /**
     * Indicating that the image should display as a repeating pattern outside of the image bounds.
     */
    REPEAT;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy