/// <summary>
 /// Initializes a new instance of <see cref="GestureEventArgs"/>.
 /// </summary>
 /// <param name="type">The gesture type.</param>
 /// <param name="trackingID">The tracking ID.</param>
 public SpaceGestureEventArgs(SpaceGestureType type, ulong trackingID)
 {
     GestureType = type;
     TrackingID = trackingID;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of <see cref="Gesture"/> with the specified type and segments.
 /// </summary>
 /// <param name="type">The type of gesture.</param>
 /// <param name="segments">The segments of the gesture.</param>
 public SpaceGesture(SpaceGestureType type, ISpaceGestureSegment[] segments)
 {
     GestureType = type;
     Segments = segments;
 }