Cartesian3
external class Cartesian3(var x: Double = definedExternally, var y: Double = definedExternally, var z: Double = definedExternally)(source)
A 3D Cartesian point.
See also
Properties
Functions
Link copied to clipboard
Duplicates this Cartesian3 instance.
Link copied to clipboard
fun equalsEpsilon(right: Cartesian3? = definedExternally, relativeEpsilon: Double? = definedExternally, absoluteEpsilon: Double? = definedExternally): Boolean
Compares this Cartesian against the provided Cartesian componentwise and returns true
if they pass an absolute or relative tolerance test, false
otherwise.