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

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

The newest version!
package com.bselzer.ktx.geometry.dimension.bi.position

data class Point2D(
    override val x: Double = 0.0,
    override val y: Double = 0.0
) : Coordinates2D {
    override fun toString(): String = "[$x,$y]"
    override fun toPoint2D(): Point2D = this
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy