iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIOrbitModifier3D
@interface SCIOrbitModifier3D : SCIGestureModifierBase3D
The SCIOrbitModifier3D provides the behaviour of orbit (rotation around camera target).
-
Defines the number of degrees (angle) to orbit the target for each pixel.
Declaration
Objective-C
@property (nonatomic) float degreesPerPixelSensitivity;Swift
var degreesPerPixelSensitivity: Float { get set } -
Defines the
UIPanGestureRecognizerwhich is used to detect gestures.Declaration
Objective-C
@property (nonatomic, readonly, nullable) UIPanGestureRecognizer *gestureRecognizer;Swift
var gestureRecognizer: UIPanGestureRecognizer? { get } -
Creates a new instance of the
SCIOrbitModifier3Dclass.Declaration
Objective-C
- (nonnull instancetype)initWithDefaultNumberOfTouches: (NSUInteger)numberOfTouches;Swift
init(defaultNumberOfTouches numberOfTouches: UInt)Parameters
numberOfTouchesThe default number of touches which will be used by underlying gestureRecognizer.
View on GitHub