LightBuzz.Vitruvius.Gesture.Gesture C# (CSharp) Method

Gesture() public method

Initializes a new instance of Gesture.
public Gesture ( string name, IGestureSegment segments ) : Microsoft.Kinect
name string The name of gesture.
segments IGestureSegment The segments of the gesture.
return Microsoft.Kinect
        public Gesture(string name, IGestureSegment[] segments)
        {
            _name = name;
            _segments = segments;
        }

Same methods

Gesture::Gesture ( GestureType type, IGestureSegment segments ) : Microsoft.Kinect