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

commonMain.earth.worldwind.draw.DrawableLambda.kt Maven / Gradle / Ivy

package earth.worldwind.draw

open class DrawableLambda(protected val lambda: (dc: DrawContext) -> Unit): Drawable {
    override fun recycle() { }
    /**
     * Performs the actual rendering in OpenGL.
     *
     * @param dc The current draw context.
     */
    override fun draw(dc: DrawContext) = lambda(dc)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy