Package com.leapmotion.leap

Examples of com.leapmotion.leap.Gesture


  private void processGestures(Controller controller) {
    GestureList list = controller.frame().gestures();
    if (list.empty() == false) {
      for (int i = 0; i < list.count(); i++) {
        Gesture gesture = list.get(i);
        invokeCallback(gesture);
        // printGestureDetails(gesture, controller);
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.leapmotion.leap.Gesture

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.