Properties:
Methods:
The LeapScreenTapGesture class represents a tapping gesture by a finger or tool.
Public FunctionsProperty- (BOOL) equals:(const LeapGesture *) otherCompare LeapGesture object equality.
[thisGesture equals:thatGesture];
- Parameters
- other -
The LeapGesture object to compare.
Public Static Functionsdirection- (LeapVector *) directionThe direction of finger tip motion.
LeapVector *tapDirection = screenTap.direction;
- Return
- LeapVector A unit direction vector.
duration- (int64_t) durationThe elapsed duration of the recognized movement up to the frame containing this LeapGesture object, in microseconds.
int64_t microseconds = gesture.duration;
- Return
- int64_t the elapsed duration in microseconds.
durationSeconds- (float) durationSecondsThe elapsed duration in seconds.
float seconds = gesture.duration;
- See
- duration
- Return
- float the elapsed duration in seconds.
frame- (LeapFrame *) frameThe LeapFrame containing this LeapGesture instance.
LeapFrame *owningFrame = gesture.frame;
- Return
- The parent LeapFrame object.
hands- (NSArray *) handsThe list of hands associated with this LeapGesture, if any.
NSArray *handList = gesture.hands; //Only one hand for current gestures LeapHand *gesturingHand = [handList objectAtIndex:0];
- Return
- NSArray the list of related LeapHand objects.
id- (int32_t) idisValid- (BOOL) isValidReports whether this LeapGesture instance represents a valid gesture.
LeapFrame *frame = [controller frame:0]; LeapGesture *trackedGesture = [frame gesture:trackedGestureID]; if(trackedGesture.isValid) { //Use the data... }
- Return
- bool Yes, if this is a valid LeapGesture instance; NO, otherwise.
pointable- (LeapPointable *) pointableThe finger performing the screen tap gesture.
LeapPointable * tapper = screenTap.pointable;
- Return
- A LeapPointable object representing the tapping finger.
pointables- (NSArray *) pointablesThe list of fingers and tools associated with this LeapGesture, if any.
NSArray *pointableList = gesture.pointables; //Only one pointable for current gestures LeapHand *gesturingPointable = [pointableList objectAtIndex:0];
- Return
- NSArray the list of related LeapPointable objects.
position- (LeapVector *) positionThe position where the screen tap is registered.
LeapVector *tapPosition = screenTap.position;
- Return
- A LeapVector containing the coordinates of screen tap location.
progress- (float) progressThe progess value is always 1.0 for a screen tap gesture.
- Return
- float The value 1.0.
state- (LeapGestureState) stateThe gesture state.
- Return
- LeapGestureState A value from the LeapGestureState enumeration.
type- (LeapGestureType) typeThe gesture type.
LeapGestureType type = gesture.type;
- Return
- LeapGestureType A value from the LeapGestureType enumeration.
+ (LeapGesture *) invalidReturns an invalid LeapGesture object.
LeapGesture *wrongGesture = LeapGesture.invalid;
- Return
- The invalid LeapGesture instance.