Point3D

public struct Point3D : Hashable

Represents a point in 3D space.

  • x

    Position along the X axis. The default value is 0.

    Declaration

    Swift

    public var x: Double
  • y

    Position along the Y axis. The default value is 0.

    Declaration

    Swift

    public var y: Double
  • z

    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)