Algorithm to detect intersection of two rectangles? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T18:38:10Zhttp://stackoverflow.com/feeds/question/115426http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles28Algorithm to detect intersection of two rectangles?alankdkd2008-09-22T15:15:53Z2009-03-30T05:16:00Z
<p>I'm looking for an algorithm to detect if two rectangles intersect (one at an arbitrary angle, the other with only vertical/horizontal lines).</p>
<p>Testing if a corner of one is in the other ALMOST works. It fails if the rectangles form a cross-like shape.</p>
<p>It seems like a good idea to avoid using slopes of the lines, which would require special cases for vertical lines.</p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/115457#1154570Answer by Wes P for Algorithm to detect intersection of two rectangles?Wes P2008-09-22T15:19:42Z2008-09-22T15:19:42Z<p>what if you add to your corner check, a check to see if the second rectangle is inside the bounds (rectangular) of the angled rectangle?</p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/115471#1154710Answer by Martijn for Algorithm to detect intersection of two rectangles?Martijn2008-09-22T15:21:33Z2008-09-22T15:21:33Z<p>What language are you gonna do this in? Because in Java there are built-in classes that let you do this.</p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/115474#1154740Answer by Kendrick Wilson for Algorithm to detect intersection of two rectangles?Kendrick Wilson2008-09-22T15:21:54Z2009-01-16T19:09:10Z<p>I think graphics api and most GUI libraries(like swing) has this implemented.</p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/115476#1154761Answer by bcash for Algorithm to detect intersection of two rectangles?bcash2008-09-22T15:22:10Z2008-09-22T15:22:10Z<p>If you're using Java, all implementations of the Shape interface have an <a href="http://java.sun.com/javase/6/docs/api/java/awt/Shape.html#intersects(double,%20double,%20double,%20double)" rel="nofollow">intersects</a> method that take a rectangle. </p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/115484#1154840Answer by Adam Davis for Algorithm to detect intersection of two rectangles?Adam Davis2008-09-22T15:23:25Z2008-09-22T15:23:25Z<p>Well, the brute force method is to walk the edges of the horizontal rectangle and check each point along the edge to see if it falls on or in the other rectangle.</p>
<p>The mathematical answer is to form equations describing each edge of both rectangles. Now you can simply find if any of the four lines from rectangle A intersect any of the lines of rectangle B, which should be a simple (fast) linear equation solver.</p>
<p>-Adam</p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/115485#1154850Answer by lbrandy for Algorithm to detect intersection of two rectangles?lbrandy2008-09-22T15:23:28Z2008-09-22T15:23:28Z<p>Check to see if any of the lines from one rectangle intersect any of the lines from the other. Naive line segment intersection is easy to code up.</p>
<p>If you need more speed, there are advanced algorithms for line segment intersection (sweep-line). See <a href="http://en.wikipedia.org/wiki/Line_segment_intersection" rel="nofollow">http://en.wikipedia.org/wiki/Line_segment_intersection</a></p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/115497#1154970Answer by HenryR for Algorithm to detect intersection of two rectangles?HenryR2008-09-22T15:25:37Z2008-09-22T15:25:37Z<p>You could find the intersection of each side of the angled rectangle with each side of the axis-aligned one. Do this by finding the equation of the infinite line on which each side lies (i.e. v1 + t(v2-v1) and v'1 + t'(v'2-v'1) basically), finding the point at which the lines meet by solving for t when those two equations are equal (if they're parallel, you can test for that) and then testing whether that point lies on the line segment between the two vertices, i.e. is it true that 0 <= t <= 1 and 0 <= t' <= 1.</p>
<p>However, this doesn't cover the case when one rectangle completely covers the other. That you can cover by testing whether all four points of either rectangle lie inside the other rectangle. </p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/115499#1154999Answer by m_pGladiator for Algorithm to detect intersection of two rectangles?m_pGladiator2008-09-22T15:25:54Z2008-11-20T20:18:31Z<p>Basically look at the following picture: </p>
<p><br><img src="http://www.gamasutra.com/features/20000330/bobic_08.gif"/></p>
<p>If the two boxes collide, the lines A and B will overlap.</p>
<p>Note that this will have to be done on both the X and the Y axis, and both need to overlap for the rectangles to collide.</p>
<p>There is a good article in <a href="http://www.gamasutra.com/features/20000330/bobic_01.htm" rel="nofollow">gamasutra.com</a> which answers the question (the picture is from the article).
I did similar algorithm 5 years ago and I have to find my code snippet to post it here later</p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/115505#1155050Answer by freespace for Algorithm to detect intersection of two rectangles?freespace2008-09-22T15:27:00Z2008-09-22T15:32:41Z<p>This is what I would do, for the <em>3D</em> version of this problem:</p>
<p>Model the 2 rectangles as planes described by equation P1 and P2, then write P1=P2 and derive from that the line of intersection equation, which won't exist if the planes are parallel (no intersection), or are in the same plane, in which case you get 0=0. In that case you will need to employ a 2D rectangle intersection algorithm.</p>
<p>Then I would see if that line, which is in the plane of both rectangles, passes through both rectangles. If it does, then you have an intersection of 2 rectangles, otherwise you don't (or shouldn't, I might have missed a corner case in my head).</p>
<p>To find if a line passes through a rectangle in the same plane, I would find the 2 points of intersection of the line and the sides of the rectangle (modelling them using line equations), and then make sure the points of intersections are with in range.</p>
<p>That is the mathematical descriptions, unfortunately I have no code to do the above.</p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/115520#11552036Answer by Nils Pipenbrinck for Algorithm to detect intersection of two rectangles?Nils Pipenbrinck2008-09-22T15:28:21Z2008-09-22T15:41:57Z<p>The standard method would be to do the <strong>separating axis test</strong> (do a google search on that).</p>
<p>In short:</p>
<ul>
<li>Two objects don't intersect if you can find a line that separates the two objects. e.g. the objects / all points of an object are on different sides of the line.</li>
</ul>
<p>The fun thing is, that it's sufficient to just check all edges of the two rectangles. If the rectangles don't overlap one of the edges will be the separating axis.</p>
<p>In 2D you can do this without using slopes. An edge is simply defined as the difference between two vertices, e.g.</p>
<pre><code> edge = v(n) - v(n-1)
</code></pre>
<p>You can get a perpendicular to this by rotating it by 90°. In 2D this is easy as:</p>
<pre><code> rotated.x = -unrotated.y
rotated.y = unrotated.x
</code></pre>
<p>So no trigonometry or slopes involved. Normalizing the vector to unit-length is not required either.</p>
<p>If you want to test if a point is on one or another side of the line you can just use the dot-product. the sign will tell you which side you're on:</p>
<pre><code> // rotated: your rotated edge
// v(n-1) any point from the edge.
// testpoint: the point you want to find out which side it's on.
side = sign (rotated.x * (testpoint.x - v(n-1).x) +
rotated.y * (testpoint.y - v(n-1).y);
</code></pre>
<p>Now test all points of rectangle A against the edges of rectangle B and vice versa. If you find a separating edge the objects don't intersect. If you find no separating edge either the rectangles are intersecting or one rectangle is contained in the other.</p>
<p>The test works with any convex polygons btw.. </p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/204447#2044470Answer by Howard May for Algorithm to detect intersection of two rectangles?Howard May2008-10-15T11:56:24Z2008-10-15T11:56:24Z<p>One solution is to use something called a No Fit Polygon. This polygon is calculated from the two polygons (conceptually by sliding one around the other) and it defines the area for which the polygons overlap given their relative offset. Once you have this NFP then you simply have to do an inclusion test with a point given by the relative offset of the two polygons. This inclusion test is quick and easy but you do have to create the NFP first.</p>
<p>Have a search for No Fit Polygon on the web and see if you can find an algorithm for convex polygons (it gets MUCH more complex if you have concave polygons). If you can't find anything then email me at howard dot J dot may gmail dot com</p>
http://stackoverflow.com/questions/115426/algorithm-to-detect-intersection-of-two-rectangles/696059#6960590Answer by an0 for Algorithm to detect intersection of two rectangles?an02009-03-30T05:16:00Z2009-03-30T05:16:00Z<p>I don't have enough reputation to comment on Nils' answer, so my question here:</p>
<pre><code>+--------+
| R1 |
| |
| +-+-----+
+------+-+ |
| R2 |
+-------+
</code></pre>
<p>Obviously, all points of R2 are on the right of the left edge of R1, so only testing all points of R2 against the left edge of R1 is not enough, all the points of R1 must be also taken into account.</p>