Ocronet.Dynamic.Rect.Includes C# (CSharp) Method

Includes() public method

public Includes ( Rect other ) : bool
other Rect
return bool
        public bool Includes(Rect other)
        {
            return Includes(other.x0, other.y0) && Includes(other.x1, other.y1);
        }

Same methods

Rect::Includes ( float x, float y ) : bool
Rect::Includes ( int x, int y ) : bool