Class SKRotateGestureEventArgs
Provides data for a rotation gesture event detected from two simultaneous touches.
public class SKRotateGestureEventArgs : EventArgs
- Inheritance
-
SKRotateGestureEventArgs
- Inherited Members
Remarks
Rotation events are raised simultaneously with SKPinchGestureEventArgs when two or more touches are active. The RotationDelta is a per-event incremental angle change in degrees. To compute cumulative rotation, sum successive deltas or use the Rotation property.
RotateDetected RotateDetected SKPinchGestureEventArgsConstructors
- SKRotateGestureEventArgs(SKPoint, SKPoint, float)
Initializes a new instance of the SKRotateGestureEventArgs class.
Properties
- FocalPoint
Gets the current center point between the rotation fingers in view coordinates.
- PreviousFocalPoint
Gets the center point between the rotation fingers from the previous event.
- RotationDelta
Gets the incremental rotation angle change since the previous event, in degrees.