CCT.NUI.HandTracking.ShapeHandDataFactory.Create C# (CSharp) Method

Create() public method

public Create ( ShapeCollection shapes ) : HandCollection
shapes CCT.NUI.Core.Shape.ShapeCollection
return HandCollection
        public HandCollection Create(ShapeCollection shapes)
        {
            if (shapes.Count == 0)
            {
                this.currentValue = Clear();
            }
            else
            {
                this.currentValue = CreateHandCollection(shapes);
            }
            return this.currentValue;
        }

Same methods

ShapeHandDataFactory::Create ( HandData lastFrameData, Shape shape ) : HandData
ShapeHandDataFactory::Create ( Shape shape ) : HandData
ShapeHandDataFactory::Create ( int id, Shape shape, IList lastFrameFingerPoints ) : HandData