これは私のコードの要点です。
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日間だけleap motionを使っていましたが、本当にあなたの助けが必要です.