Right now, we interact with computers in a very unnatural 2D way.
With the Leap Motion Controller, you can really apply your intuition and something from your mind to a physical object with far greater ease than we currently do.
- Elon Musk
How do I get started?
What languages can I use it with?
C++
C#
Objective C
Java
JavaScript
Python
LeapJS
Getting started...
HTML
JavaScript
var controller = new Leap.Controller({
enableGestures: true
});
controller.connect();
The loop
var controller = new Leap.Controller({
enableGestures: true
});
controller.connect();
// the Leap Motion loop
controller.on('frame', function (frame) {
});