Exemplo n.º 1
0
 /// <summary>
 /// Tests if this rectangle overlaps another rectangle.
 /// </summary>
 /// <param name="rect">The rectangle to test against.</param>
 /// <returns></returns>
 public bool Overlaps(RectangleI rect)
 {
     RectangleI test = new RectangleI(this);
     return test.Intersect(rect);
 }