CCT.NUI.Core.Histogram.Increase C# (CSharp) Method

Increase() public method

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