Determine if two rectangles overlap each other? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T05:49:05Zhttp://stackoverflow.com/feeds/question/306316http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other8Determine if two rectangles overlap each other?Rob Burke2008-11-20T18:21:45Z2009-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 -> 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 -> 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 << "Value: " << 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#30633220Answer by Charles Bretana for Determine if two rectangles overlap each other?Charles Bretana2008-11-20T18:25:30Z2009-06-01T18:58:39Z<pre><code>if (RectA.X1 < RectB.X2 && RectA.X2 > RectB.X1 &&
RectA.Y1 < RectB.Y2 && RectA.Y2 > 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-3Answer by Paul Nathan for Determine if two rectangles overlap each other?Paul Nathan2008-11-20T18:25:46Z2008-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#3063351Answer by Scott Evernden for Determine if two rectangles overlap each other?Scott Evernden2008-11-20T18:26:01Z2008-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#3063794Answer by eJames for Determine if two rectangles overlap each other?eJames2008-11-20T18:36:20Z2008-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 >= min) && (value <= 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#3064030Answer by Rob Burke for Determine if two rectangles overlap each other?Rob Burke2008-11-20T18:42:44Z2008-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#3064140Answer by baretta for Determine if two rectangles overlap each other?baretta2008-11-20T18:46:04Z2008-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 <= lrx && uly <= lry;
}
</code></pre>
http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306421#3064211Answer by coryan for Determine if two rectangles overlap each other?coryan2008-11-20T18:47:47Z2008-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 & a, Rectangle const & b) {
if (a.x + a.width <= b.x) return true;
return false;
}
bool is_right_of(Rectangle const & a, Rectangle const & b) {
return is_left_of(b, a);
}
bool not_insersect( Rectangle const & a, Rectangle const & 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 & a, Rectangle const & b) {
return !not_insersect(a, b);
}
</code></pre>
http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306434#3064342Answer by David Norman for Determine if two rectangles overlap each other?David Norman2008-11-20T18:53:28Z2008-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 < x2);
assert(y1 < y2);
}
int x1, x2, y1, y2;
};
bool
overlap(const Rect &r1, const Rect &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 > r2.x2 ||
r2.x1 > r1.x2 ||
r1.y1 > r2.y2 ||
r2.x1 > r1.y2;
return !noOverlap;
}
</code></pre>
http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306455#3064550Answer by Will for Determine if two rectangles overlap each other?Will2008-11-20T19:01:12Z2008-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#3065180Answer by Angel for Determine if two rectangles overlap each other?Angel2008-11-20T19:17:12Z2008-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 < Rect2.P1.x < Rect1.P2.x) and (Rect1.P1.y > Rect2.P1.y > 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#3065240Answer by spoulson for Determine if two rectangles overlap each other?spoulson2008-11-20T19:18:52Z2008-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#3065560Answer by Adam Tegen for Determine if two rectangles overlap each other?Adam Tegen2008-11-20T19:31:23Z2008-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 < x2);
assert(y1 < y2);
}
int x1, x2, y1, y2;
};
//some area of the r1 overlaps r2
bool overlap(const Rect &r1, const Rect &r2)
{
return r1.x1 < r2.x2 && r2.x1 < r1.x2 &&
r1.y1 < r2.y2 && r2.x1 < r1.y2;
}
//either the rectangles overlap or the edges touch
bool touch(const Rect &r1, const Rect &r2)
{
return r1.x1 <= r2.x2 && r2.x1 <= r1.x2 &&
r1.y1 <= r2.y2 && r2.x1 <= r1.y2;
}
</code></pre>
http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306558#3065580Answer by Mike Dunlavey for Determine if two rectangles overlap each other?Mike Dunlavey2008-11-20T19:33:15Z2008-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 >= B.Right || B.Left >= A.Right)
&& (A.Bottom >= B.Top || B.Bottom >= A.Top));
</code></pre>
http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306567#3065670Answer by Lasse V. Karlsen for Determine if two rectangles overlap each other?Lasse V. Karlsen2008-11-20T19:34:52Z2008-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>