这是我的代码要点。
Leap.loop({enableGestures: true}, function(frame) {
var gestures = frame.gestures;
for (var i = 0; i < gestures.length; i++) {
// I want to do something when draw circle with one pointable
if (gesture.type == "circle" && gesture.state == "stop" && gesture.pointableIds.length == 1) {
var isClockWise = ? ;// how to know the direction of circle ?
}
}
} );
如何通过手势对象知道圆圈是顺时针还是逆时针?
我只使用了 2 天的跳跃动作,真的需要你的帮助。