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

commonMain.com.bselzer.ktx.geometry.dimension.bi.Dimension2D.kt Maven / Gradle / Ivy

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