iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIFreeLookModifier3D
@interface SCIFreeLookModifier3D : SCIGestureModifierBase3D
The SCIFreeLookModifier3D provides the behaviour of free look (free rotation of camera).
-
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
SCIFreeLookModifier3Dclass.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