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

IsOutOfBounds() private method

private IsOutOfBounds ( int x, int y ) : bool
x int
y int
return bool
        private bool IsOutOfBounds(int x, int y)
        {
            return x < 0 || y < 0 || x >= this.Width || y >= this.Height;
        }
    }