iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIPoint3D
@interface SCIPoint3D : NSObject
Represents the [x, y, z] coordinates point in 3-D space.
Note
Thex, y and z components are single-precision floating-point values.
-
The
x-componentof thisSCIPoint3D.Declaration
Objective-C
@property (nonatomic, readonly) float x;Swift
var x: Float { get } -
The
y-componentof thisSCIPoint3D.Declaration
Objective-C
@property (nonatomic, readonly) float y;Swift
var y: Float { get } -
The
z-componentof thisSCIPoint3D.Declaration
Objective-C
@property (nonatomic, readonly) float z;Swift
var z: Float { get }
View on GitHub