Kinect.KinectGestures.SetGestureJoint C# (CSharp) Method

SetGestureJoint() private static method

private static SetGestureJoint ( GestureData &gestureData, float timestamp, int joint, Vector3 jointPos ) : void
gestureData GestureData
timestamp float
joint int
jointPos UnityEngine.Vector3
return void
        private static void SetGestureJoint(ref GestureData gestureData, float timestamp, int joint, Vector3 jointPos)
        {
            gestureData.joint = joint;
            gestureData.jointPos = jointPos;
            gestureData.timestamp = timestamp;
            gestureData.state++;
        }