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

commonMain.com.bselzer.ktx.geometry.dimension.tri.position.Point3D.kt Maven / Gradle / Ivy

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

data class Point3D(
    override val x: Double = 0.0,
    override val y: Double = 0.0,
    override val z: Double = 0.0
) : Coordinates3D {
    override fun toString(): String = "[$x,$y,$z]"
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy