Methods:
The SwipeGesture class represents a swiping motion a finger or tool.
controller.enableGesture(Gesture.Type.TYPE_SWIPE);Public FunctionsPublic Static FunctionsVector direction()The unit direction vector parallel to the swipe motion.
Vector swipeDirection = swipe.direction();You can compare the components of the vector to classify the swipe as appropriate for your application. For example, if you are using swipes for two dimensional scrolling, you can compare the x and y values to determine if the swipe is primarily horizontal or vertical.
- Return
- Vector The unit direction vector representing the swipe motion.
Pointable pointable()Vector position()The current position of the swipe.
Vector currentSwipePosition = swipe.position();
- Return
- Vector The current swipe position within the Leap Motion frame of reference, in mm.
float speed()The swipe speed in mm/second.
float currentSwipeSpeed = swipe.speed();
- Return
- float The speed of the finger performing the swipe gesture in millimeters per second.
Vector startPosition()The position where the swipe began.
Vector swipeStart = swipe.startPosition();
- Return
- Vector The starting position within the Leap Motion frame of reference, in mm.
SwipeGesture(Gesture rhs)Constructs a SwipeGesture object from an instance of the Gesture class.
if(gesture.type() == Gesture.Type.TYPE_SWIPE) { SwipeGesture swipeGesture = new SwipeGesture(gesture); }
- Parameters
- rhs -
The Gesture instance to specialize. This Gesture instance must be a SwipeGesture object.
Gesture.Type classType()The swipe gesture type.
if(gesture.type() == SwipeGesture.classType()) { SwipeGesture swipeGesture = new SwipeGesture(gesture); }
- Return
- Type The type value designating a swipe gesture.