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
Thex, y and z components are double-precision floating-point values.
-
The
x-componentof thisSCIDoublePoint3D.Declaration
Objective-C
@property (nonatomic, readonly) double x;Swift
var x: Double { get } -
The
y-componentof thisSCIDoublePoint3D.Declaration
Objective-C
@property (nonatomic, readonly) double y;Swift
var y: Double { get } -
The
z-componentof thisSCIDoublePoint3D.Declaration
Objective-C
@property (nonatomic, readonly) double z;Swift
var z: Double { get }
View on GitHub