
commonMain.com.bselzer.ktx.geometry.dimension.bi.Dimension2D.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geometry-jvm Show documentation
Show all versions of geometry-jvm Show documentation
Two and three dimensional geometrical objects.
The newest version!
package com.bselzer.ktx.geometry.dimension.bi
data class Dimension2D(
override val width: Double = 0.0,
override val height: Double = 0.0
) : Size2D {
override fun toString(): String = "${width}x${height}"
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy