Praeclarum.Graphics.Rectangle.IntersectsWith C# (CSharp) Méthode

IntersectsWith() public méthode

public IntersectsWith ( Rectangle rect ) : bool
rect Rectangle
Résultat bool
		public bool IntersectsWith (Rectangle rect)
		{
			return !((Left >= rect.Right) || (Right <= rect.Left) ||
			         (Top >= rect.Bottom) || (Bottom <= rect.Top));
		}