Kinect.KinectManager.GetLeftHandState C# (CSharp) Method

GetLeftHandState() public method

Gets the left hand state for the specified user.
public GetLeftHandState ( Int64 userId ) : KinectInterop.HandState
userId Int64 User ID
return KinectInterop.HandState
        public KinectInterop.HandState GetLeftHandState(Int64 userId)
        {
            if (dictUserIdToIndex.ContainsKey(userId))
            {
                int index = dictUserIdToIndex[userId];

                if (index >= 0 && index < sensorData.bodyCount &&
                    bodyFrame.bodyData[index].bIsTracked != 0)
                {
                    return bodyFrame.bodyData[index].leftHandState;
                }
            }

            return KinectInterop.HandState.NotTracked;
        }
KinectManager