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

Gesture() public method

public Gesture ( GestureType type, IGestureSegment segments ) : Microsoft.Kinect
type GestureType
segments IGestureSegment
return Microsoft.Kinect
        public Gesture(GestureType type, IGestureSegment[] segments)
        {
            _type = type;
            _segments = segments;

            _name = type.ToString();
        }

Same methods

Gesture::Gesture ( string name, IGestureSegment segments ) : Microsoft.Kinect