iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x

SCIDoublePoint3D

@interface SCIDoublePoint3D : NSObject

Represents the [x, y, z] coordinates point in 3-D space.

Note

The x, y and z components are double-precision floating-point values.
  • x

    The x-component of this SCIDoublePoint3D.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double x;

    Swift

    var x: Double { get }
  • y

    The y-component of this SCIDoublePoint3D.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double y;

    Swift

    var y: Double { get }
  • z

    The z-component of this SCIDoublePoint3D.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double z;

    Swift

    var z: Double { get }
  • Assign new values to the the x, y and z components.

    Declaration

    Objective-C

    - (void)assignX:(double)x y:(double)y z:(double)z;

    Swift

    func assignX(_ x: Double, y: Double, z: Double)

    Parameters

    x

    The new x value.

    y

    The new y value.

    z

    The new z value.

  • Clears the x, y and z components.

    Declaration

    Objective-C

    - (void)clear;

    Swift

    func clear()