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

commonMain.graphics.Drawing.kt Maven / Gradle / Ivy

The newest version!
package ch.softappeal.konapi.graphics

public fun Graphics.setPixel(point: Point) {
    setPixel(point.x, point.y)
}

public fun Graphics.fillRect(xTopLeft: Int, yTopLeft: Int, width: Int, height: Int) {
    for (x in xTopLeft..




© 2015 - 2024 Weber Informatics LLC | Privacy Policy