Hi all,
Newbee here sorry in advance if I asked a dumb question.
I am currently playing around with the javascript button demo. I try to make the buttons align in the same direction as the hand toward by using the hand. roll() and hand. pitch() to rotate the base:
base.rotateY(hand.roll());
base.rotateZ(hand.yaw());
The result is not as I expect and I think the problem maybe I am using the leap.loopController.on('handFound', function(hand){} to track the hand entry and adjust the UI based on the updated hand info. But the hand's entry position is very different from the hand's final stop position so the result is not quite right.
Is what I suspect is correct? And,is there anything I can do to solve the problem? Thanks in advance!