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

info.laht.threekt.textures.Image.kt Maven / Gradle / Ivy

The newest version!
package info.laht.threekt.textures

import java.nio.ByteBuffer

class Image(
    width: Int,
    height: Int,
    val data: ByteBuffer? = null
) {

    var width = width
        internal set

    var height = height
        internal set

    override fun toString(): String {
        return "Image(width=$width, height=$height)"
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy