iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIRenderPassState3D
@interface SCIRenderPassState3D : SCIRenderPassStateCore
Defines a class which stores some data for current render pass.
-
Defines the BOOL array indicating which panes should be clipped or not.
Declaration
Objective-C
@property (nonatomic, strong) SCIBoolValues *_Nonnull clipPlanes;Swift
var clipPlanes: SCIBoolValues { get set } -
Gets or sets the viewport size for current render pass.
Declaration
Objective-C
@property (nonatomic) CGSize viewportSize;Swift
var viewportSize: CGSize { get set } -
Creates new instance of
SCIRenderPassState3Dwith initialviewportSize.Declaration
Objective-C
- (nonnull instancetype)initWithViewportSize:(CGSize)size;Swift
init(viewportSize size: CGSize)Parameters
sizeThe initial
viewportSize.
View on GitHub