CCT.NUI.Core.Histogram.Increase C# (CSharp) Méthode

Increase() public méthode

public Increase ( int depthValue ) : void
depthValue int
Résultat void
        public void Increase(int depthValue)
        {
            if (depthValue < this.data.Length)
            {
                this.data[depthValue]++;
            }
        }