Determine if two rectangles overlap each other? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T05:49:05Z http://stackoverflow.com/feeds/question/306316 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other 8 Determine if two rectangles overlap each other? Rob Burke 2008-11-20T18:21:45Z 2009-06-27T14:58:51Z <p>Hi folks,</p> <p>I am trying to write a C++ program that takes the following inputs from the user to construct rectangles (between 2 and 5): height, width, x-pos, y-pos. All of these rectangles will exist parallel to the x and the y axis, that is all of their edges will have slopes of 0 or infinity.</p> <p>I've tried to implement what is mentioned in <a href="http://stackoverflow.com/questions/115426">this</a> question but I am not having very much luck.</p> <p>My current implementation does the following:</p> <pre><code>// Gets all the vertices for Rectangle 1 and stores them in an array -&gt; arrRect1 // point 1 x: arrRect1[0], point 1 y: arrRect1[1] and so on... // Gets all the vertices for Rectangle 2 and stores them in an array -&gt; arrRect2 // rotated edge of point a, rect 1 int rot_x, rot_y; rot_x = -arrRect1[3]; rot_y = arrRect1[2]; // point on rotated edge int pnt_x, pnt_y; pnt_x = arrRect1[2]; pnt_y = arrRect1[3]; // test point, a from rect 2 int tst_x, tst_y; tst_x = arrRect2[0]; tst_y = arrRect2[1]; int value; value = (rot_x * (tst_x - pnt_x)) + (rot_y * (tst_y - pnt_y)); cout &lt;&lt; "Value: " &lt;&lt; value; </code></pre> <p>However I'm not quite sure if (a) I've implemented the algorithm I linked to correctly, or if I did exactly how to interpret this?</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306332#306332 20 Answer by Charles Bretana for Determine if two rectangles overlap each other? Charles Bretana 2008-11-20T18:25:30Z 2009-06-01T18:58:39Z <pre><code>if (RectA.X1 &lt; RectB.X2 &amp;&amp; RectA.X2 &gt; RectB.X1 &amp;&amp; RectA.Y1 &lt; RectB.Y2 &amp;&amp; RectA.Y2 &gt; RectB.Y1) </code></pre> <p>say you have Rect A, and Rect B. Proof is by contradiction. Any one of four conditions guarantees that NO OVERLAP CAN EXIST.</p> <pre>Cond1. If A's left edge is to the right of the B's right edge, - then A is Totally to right Of B Cond2. If A's right edge is to the left of the B's left edge, - then A is Totally to left Of B Cond3. If A's top edge is below B's bottom edge, - then A is Totally below B Cond4. If A's bottom edge is above B's top edge, - then A is Totally above B</pre> <p>So condition for Non-Overlap is </p> <pre>Cond1 Or Cond2 Or Cond3 Or Cond4</pre> <p>Therefore, a sufficient condition for Overlap is the opposite (De Morgan)</p> <pre>Not Cond1 AND Not Cond2 And Not Cond3 And Not Cond4</pre> <p>this is equivilent to </p> <pre>A's Left Edge to left of B's right edge And A's right edge to right of B's left edge And A's top above B's bottom And A's bottom below B's Top</pre> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306334#306334 -3 Answer by Paul Nathan for Determine if two rectangles overlap each other? Paul Nathan 2008-11-20T18:25:46Z 2008-11-20T18:25:46Z <p>To determine (a), figure out a test case, then enter it into the program and see if it correctly detects an intersect.</p> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306335#306335 1 Answer by Scott Evernden for Determine if two rectangles overlap each other? Scott Evernden 2008-11-20T18:26:01Z 2008-11-20T18:26:01Z <p>i would think the solution to your problem doesn't involve <em>any</em> multiplication.</p> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306379#306379 4 Answer by eJames for Determine if two rectangles overlap each other? eJames 2008-11-20T18:36:20Z 2008-11-20T18:36:20Z <pre><code>struct rect { int x; int y; int width; int height; }; bool valueInRange(int value, int min, int max) { return (value &gt;= min) && (value &lt;= max); } bool rectOverlap(rect A, rect B) { bool xOverlap = valueInRange(A.x, B.x, B.x + B.width) || valueInRange(B.x, A.x, A.x + A.width); bool yOverlap = valueInRange(A.y, B.y, B.y + B.height) || valueInRange(B.y, A.y, A.y + B.height); return xOverlap && yOverlap; }</code></pre> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306403#306403 0 Answer by Rob Burke for Determine if two rectangles overlap each other? Rob Burke 2008-11-20T18:42:44Z 2008-11-20T18:42:44Z <p>@Charles Bretana:</p> <p>Assuming our rectangle is shaped like so:</p> <pre><code>d---------c | | | | a---------b </code></pre> <p>RectA.X1 is the X value at point a? RectA.X2 is the X value at point b?</p> <p>Similar for RectB. Or am I mistaken?</p> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306414#306414 0 Answer by baretta for Determine if two rectangles overlap each other? baretta 2008-11-20T18:46:04Z 2008-11-20T18:46:04Z <p>I have implemented a C# version, it is easily converted to C++.</p> <pre><code>public bool Intersects ( Rectangle rect ) { float ulx = Math.Max ( x, rect.x ); float uly = Math.Max ( y, rect.y ); float lrx = Math.Min ( x + width, rect.x + rect.width ); float lry = Math.Min ( y + height, rect.y + rect.height ); return ulx &lt;= lrx &amp;&amp; uly &lt;= lry; } </code></pre> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306421#306421 1 Answer by coryan for Determine if two rectangles overlap each other? coryan 2008-11-20T18:47:47Z 2008-11-20T18:47:47Z <p>Ask yourself the opposite question: How can I determine if two rectangles do not intersect at all? Obviously, a rectangle A completely to the left of rectangle B does not intersect. Also if A is completely to the right. And similarly if A is completely above B or completely below B. In any other case A and B intersect.</p> <p>What follows may have bugs, but I am pretty confident about the algorithm:</p> <pre><code>struct Rectangle { int x; int y; int width; int height; }; bool is_left_of(Rectangle const &amp; a, Rectangle const &amp; b) { if (a.x + a.width &lt;= b.x) return true; return false; } bool is_right_of(Rectangle const &amp; a, Rectangle const &amp; b) { return is_left_of(b, a); } bool not_insersect( Rectangle const &amp; a, Rectangle const &amp; b) { if (is_left_of(a, b)) return true; if (is_right_of(a, b)) return true; // Do the same for top/bottom... } bool insersect(Rectangle const &amp; a, Rectangle const &amp; b) { return !not_insersect(a, b); } </code></pre> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306434#306434 2 Answer by David Norman for Determine if two rectangles overlap each other? David Norman 2008-11-20T18:53:28Z 2008-11-20T18:53:28Z <pre><code>struct Rect { Rect(int x1, int x2, int y1, int y2) : x1(x1), x2(x2), y1(y1), y2(y2) { assert(x1 &lt; x2); assert(y1 &lt; y2); } int x1, x2, y1, y2; }; bool overlap(const Rect &amp;r1, const Rect &amp;r2) { // The rectangles don't overlap if // one rectangle's minimum in some dimension // is greater than the other's maximum in // that dimension. bool noOverlap = r1.x1 &gt; r2.x2 || r2.x1 &gt; r1.x2 || r1.y1 &gt; r2.y2 || r2.x1 &gt; r1.y2; return !noOverlap; } </code></pre> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306455#306455 0 Answer by Will for Determine if two rectangles overlap each other? Will 2008-11-20T19:01:12Z 2008-11-20T19:01:12Z <p>In the question, you link to the maths for when rectangles are at arbitrary angles of rotation. If I understand the bit about angles in the question however, I interpret that all rectangles are perpendicular to one another.</p> <p>A general knowing the area of overlap formula is:</p> <p>Using the example:</p> <pre> 1 2 3 4 5 6 1 +---+---+ | | 2 + A +---+---+ | | B | 3 + + +---+---+ | | | | | 4 +---+---+---+---+ + | | 5 + C + | | 6 +---+---+ </pre> <p>1) collect all the x coordinates (both left and right) into a list, then sort it and remove duplicates</p> <pre>1 3 4 5 6</pre> 2) collect all the y coordinates (both top and bottom) into a list, then sort it and remove duplicates <pre>1 2 3 4 6</pre> 3) create a 2D array by number of gaps between the unique x coordinates * number of gaps between the unique y coordinates. <pre>4 * 4</pre> 4) paint all the rectangles into this grid, incrementing the count of each cell it occurs over: <pre> 1 3 4 5 6 1 +---+ | 1 | 0 0 0 2 +---+---+---+ | 1 | 1 | 1 | 0 3 +---+---+---+---+ | 1 | 1 | 2 | 1 | 4 +---+---+---+---+ 0 0 | 1 | 1 | 6 +---+---+ </pre> <p>5) As you paint the rectangles, its easy to intercept the overlaps.</p> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306518#306518 0 Answer by Angel for Determine if two rectangles overlap each other? Angel 2008-11-20T19:17:12Z 2008-11-20T19:17:12Z <p>Asuming the points for all rectangles are always set in this order:</p> <pre><code>P1----P2 | | P3----P4 </code></pre> <p>then, the problem is just only to check if the point P1 of the second rectangle falls into the first rectangle, that is:</p> <pre><code>def Intersects (Rect1, Rect2) return (Rect1.P1.x &lt; Rect2.P1.x &lt; Rect1.P2.x) and (Rect1.P1.y &gt; Rect2.P1.y &gt; Rect1.P3.y) </code></pre> <p>You can get an idea.</p> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306524#306524 0 Answer by spoulson for Determine if two rectangles overlap each other? spoulson 2008-11-20T19:18:52Z 2008-11-20T19:18:52Z <p>There's a great interactive tutorial on collision detection at <a href="http://www.harveycartel.org/metanet/tutorials/tutorialA.html" rel="nofollow">http://www.harveycartel.org/metanet/tutorials/tutorialA.html</a>. He starts off with perpendicular rectangles, then moves onto all kinds of other shapes.</p> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306556#306556 0 Answer by Adam Tegen for Determine if two rectangles overlap each other? Adam Tegen 2008-11-20T19:31:23Z 2008-11-20T19:31:23Z <pre><code>struct Rect { Rect(int x1, int x2, int y1, int y2) : x1(x1), x2(x2), y1(y1), y2(y2) { assert(x1 &lt; x2); assert(y1 &lt; y2); } int x1, x2, y1, y2; }; //some area of the r1 overlaps r2 bool overlap(const Rect &amp;r1, const Rect &amp;r2) { return r1.x1 &lt; r2.x2 &amp;&amp; r2.x1 &lt; r1.x2 &amp;&amp; r1.y1 &lt; r2.y2 &amp;&amp; r2.x1 &lt; r1.y2; } //either the rectangles overlap or the edges touch bool touch(const Rect &amp;r1, const Rect &amp;r2) { return r1.x1 &lt;= r2.x2 &amp;&amp; r2.x1 &lt;= r1.x2 &amp;&amp; r1.y1 &lt;= r2.y2 &amp;&amp; r2.x1 &lt;= r1.y2; } </code></pre> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306558#306558 0 Answer by Mike Dunlavey for Determine if two rectangles overlap each other? Mike Dunlavey 2008-11-20T19:33:15Z 2008-11-20T19:33:15Z <p>Don't think of coordinates as indicating where pixels are. Think of them as being between the pixels. That way, the area of a 2x2 rectangle should be 4, not 9.</p> <pre><code>bool bOverlap = !((A.Left &gt;= B.Right || B.Left &gt;= A.Right) &amp;&amp; (A.Bottom &gt;= B.Top || B.Bottom &gt;= A.Top)); </code></pre> http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306567#306567 0 Answer by Lasse V. Karlsen for Determine if two rectangles overlap each other? Lasse V. Karlsen 2008-11-20T19:34:52Z 2008-11-20T19:34:52Z <p>This is similar to the question about comparing date ranges, <a href="http://stackoverflow.com/questions/143552/comparing-date-ranges#143568">here</a>.</p> <p>The same type of solution applies, except that it is in two directions.</p>