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

commonMain.earth.worldwind.shape.Attributable.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

/**
 * Interface to controlling a shape's attributes. Shapes implementing this interface use the [ShapeAttributes]
 * bundle for specifying the normal attributes and the highlight attributes.
 */
interface Attributable {
    /**
     * Indicates the shape's normal (non-highlight) attributes.
     */
    var attributes: ShapeAttributes
    /**
     * Indicates the shape's highlight attributes.
     */
    var highlightAttributes: ShapeAttributes?
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy