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

SCIEllipsoidDataSeries3D

@interface SCIEllipsoidDataSeries3D : SCIXyzDisplaceableFreeSurfaceDataSeries3D

Data Series that defines the Ellipsoid in 3-Dimensional space by the Standard equation.

  • a

    The A component of the Standard ellipsoid equation.

    Declaration

    Objective-C

    @property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> a;
  • b

    The B component of the Standard ellipsoid equation.

    Declaration

    Objective-C

    @property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> b;
  • c

    The C component of the Standard ellipsoid equation.

    Declaration

    Objective-C

    @property (nonatomic, strong) NS_REFINED_FOR_SWIFT id<ISCIComparable> c;
  • Creates a new instance of SCIEllipsoidDataSeries3D.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithDataType:(SCIDataType)dataType
                                       uSize:(NSInteger)uSize
                                       vSize:(NSInteger)vSize;

    Swift

    init(dataType: SCIDataType, uSize: Int, vSize: Int)

    Parameters

    dataType

    The type of X, Y and Z data.

    uSize

    The U dimension of 2D grid.

    vSize

    The V dimension of 2D grid.