![JAR search and dependency download from the Maven repository](/logo.png)
info.laht.threekt.textures.Image.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Port of the three.js 3D javascript library for Kotlin/JVM
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