CCT.NUI.HandTracking.Mouse.FingerCursorMode.HasPoint C# (CSharp) Method

HasPoint() public method

public HasPoint ( HandCollection handData ) : bool
handData HandCollection
return bool
        public bool HasPoint(HandCollection handData)
        {
            var fingerCount = handData.Hands.First().FingerCount;
            return handData.Count > 0 && fingerCount > 0 && fingerCount <= 2;
        }
FingerCursorMode