Kinect.Gestures.KinectGesture.KinectGesture C# (CSharp) Метод

KinectGesture() публичный Метод

Creates a new KinectGesture instance.
public KinectGesture ( KinectGestureType type, IKinectGestureFrame gestureFrames ) : System
type KinectGestureType Type of the recognizable gesture
gestureFrames IKinectGestureFrame Sequence of frames that represent the gesture
Результат System
        public KinectGesture(KinectGestureType type, IKinectGestureFrame[] gestureFrames)
        {
            this.gestureType = type;
            this.gestureFrames = gestureFrames;
            this.currentFrameIndex = 0;
            this.currentFrameCount = 0;
            this.pausedFrameCount = 0;
            this.gesturePaused = false;
        }