CCT.NUI.HandTracking.HandData.HandData C# (CSharp) Method

HandData() public method

public HandData ( int id, Shape shape, Palm palm, IList fingerPoints ) : System
id int
shape CCT.NUI.Core.Shape.Shape
palm Palm
fingerPoints IList
return System
        public HandData(int id, Shape shape, Palm palm, IList<FingerPoint> fingerPoints)
        {
            this.id = id;
            this.shape = shape;
            this.palm = palm;
            this.fingerPoints = fingerPoints;
        }
HandData