Last active
September 6, 2017 21:16
-
-
Save shah0150/6daf177e959235e348b8173c4f345de3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var fist = new HandPose("Fist", new FingerPose(new AllFingersContext(), FingerFlexion.Folded)); | |
| var cheers = new HandPose("ThumpsUp", | |
| new FingerPose(new[] { Finger.Thumb }, FingerFlexion.Open), | |
| new FingerPose(new[] { Finger.Index, Finger.Ring, Finger.Pinky, Finger.Middle }, FingerFlexion.Folded)); | |
| var thumpsUp = new Gesture("thumpsUp", fist, cheers); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment