CCT.NUI.HandTracking.HandData.HandData C# (CSharp) 메소드

HandData() 공개 메소드

public HandData ( int id, Shape shape, Palm palm, IList fingerPoints ) : System
id int
shape CCT.NUI.Core.Shape.Shape
palm Palm
fingerPoints IList
리턴 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