CCT.NUI.Core.Shape.DepthMap.this C# (CSharp) Method

this() public method

public this ( int x, int y ) : int
x int
y int
return int
        public int this[int x, int y]
        {
            get 
            {
                if (this.IsOutOfBounds(x, y))
                {
                    return 0;
                }
                return this.map[x, y];
            }
            set
            {
                this.map[x, y] = value;
            }
        }