Point3D
public struct Point3D : Hashable
Represents a point in 3D space.
-
Position along the X axis. The default value is 0.
Declaration
Swift
public var x: Double -
Position along the Y axis. The default value is 0.
Declaration
Swift
public var y: Double -
Position along the Z axis. The default value is 0.
Declaration
Swift
public var z: Double -
Undocumented
Declaration
Swift
public init(x: Double = 0.0, y: Double = 0.0, z: Double = 0.0)