Exemple #1
0
 private static TwoHandGestureSegment[] InGestureSegments()
 {
     TwoHandGestureSegment[] gestureSegments = new TwoHandGestureSegment[2];
     gestureSegments[0] = Expanded();
     gestureSegments[1] = Closed();
     return(gestureSegments);
 }
 private static TwoHandGestureSegment[] GetTwoHandGestureSegments()
 {
     TwoHandGestureSegment[] gestureSegments = new TwoHandGestureSegment[2];
     gestureSegments[0] = SwipeUpGestureSegment1.UsingTwoHands();
     gestureSegments[1] = SwipeUpGestureSegment2.UsingTwoHands();
     return(gestureSegments);
 }
 private static TwoHandGestureSegment[] GetSegments()
 {
     TwoHandGestureSegment[] gestureSegments = new TwoHandGestureSegment[2];
     gestureSegments[0] = new TwoHandGestureSegment(Region.LEFT_LEG_CLOSE, Region.RIGHT_LEG_CLOSE);
     gestureSegments[1] = new CrossGestureSegment();
     return(gestureSegments);
 }