Peter Ehrlich

Results 40 comments of Peter Ehrlich

Yes, this is possible. Firstly, the code base is almost entirely shared between Node and Web, so passing in the host option should be just the same. To fix the...

Just ran a test, and this appears to be working fine. Perhaps you are not checking the gesture state, which may be start, stop, or update? ``` js console.log( gesture.state...

Hmm. Have you had this occur regularly in some use case? With some basic hand-waving, and this sample code, it hasn't been an issue: ``` javascript ctl.on('frame', function(frame){ if (frame.gestures.length...

We talked it over in the JS meeting today - seems like the frame history should really be holding deviceFrames, not animationFrames (which I believe is currently the case). When...

Transferring the images, raw, requires a pretty high data rate - around 17Mbyte/sec. Initial tests with sending data over the websocket were prohibitively slow. WebRTC data streaming (over [SCTP](http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol), maybe...

Would be excited to see this! Keep us posted

Okay, we'll keep this in mind. I'm not too familiar with RequireJS --yet-- so I'd be interested to hear how you're using it and see what's involved in integration. (also,...

What do you guys think of adding in a shim to the library itself, like this? https://github.com/leapmotion/leapjs-plugins/blob/master/utils/leap-plugins-0.1.7-utils.js#L2-L12

What version of LeapJS are you using? What version of the leap Service? What hardware? As a hack, you should be able to put a try/catch inside the `handleData` method,...