OpenTK.Graphics.Rectangle.Contains C# (CSharp) Method

Contains() public method

Contains Method
Checks if a Point lies within this Rectangle.
public Contains ( Point pt ) : bool
pt Point
return bool
        public bool Contains(Point pt)
        {
            return Contains(pt.X, pt.Y);
        }

Same methods

Rectangle::Contains ( Rectangle rect ) : bool
Rectangle::Contains ( int x, int y ) : bool