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

Intersect() public method

Intersect Method
Replaces the Rectangle with the intersection of itself and another Rectangle.
public Intersect ( Rectangle rect ) : void
rect Rectangle
return void
        public void Intersect(Rectangle rect)
        {
            this = Rectangle.Intersect(this, rect);
        }

Same methods

Rectangle::Intersect ( Rectangle a, Rectangle b ) : Rectangle