commonMain.earth.worldwind.render.image.WrapMode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worldwind-jvm Show documentation
Show all versions of worldwind-jvm Show documentation
The WorldWind Kotlin SDK (WWK) includes the library, examples and tutorials for building multiplatform 3D virtual globe applications for Android, Web and Java.
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