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

ShapeHandDataFactory() public method

public ShapeHandDataFactory ( HandDataSourceSettings settings ) : System
settings HandDataSourceSettings
return System
        public ShapeHandDataFactory(HandDataSourceSettings settings)
        {
            this.settings = settings;
            this.fingerPointDetector = new FingerPointDetector(settings);
            this.fingerBaseDetector = new FingerBaseDetector(settings);
            this.palmFinder = new PalmFinder(settings);
            this.currentValue = new HandCollection();
        }