
commonMain.com.bselzer.ktx.geometry.dimension.tri.position.Point3D.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.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