How to test if a line segment intersects an axis-aligned rectange in 2D? The segment is defined with its two ends: p1, p2. The rectangle is defined with top-left and bottom-right points.
|
The original poster wanted to DETECT an intersection between a line segment and a polygon. There was no need to LOCATE the intersection, if there is one. If that's how you meant it, you can do less work than Liang-Barsky or Cohen-Sutherland: Let the segment endpoints be p1=(x1 y1) and p2=(x2 y2).
Then all you have to do is A. Check if all four corners of the rectangle are on the same side of the line. The implicit equation for a line through p1 and p2 is: F(x y) = (y2-y1)x + (x1-x2)y + (x2*y1-x1*y2) If F(x y) = 0, (x y) is ON the line.
Substitute all four corners into F(x y). If they're all negative or all positive, there is no intersection. If some are positive and some negative, go to step B. B. Project the endpoint onto the x axis, and check if the segment's shadow intersects the polygon's shadow. Repeat on the y axis: If (x1 > xTR and x2 > xTR), no intersection (line is to right of rectangle).
You can, of course, do B first, then A. Alejo |
|||
|
|
Wrote quite simple and working solution:
|
|||||||||||||
|
|
You could also create a rectangle out of the segment and test if the other rectangle collides with it, since it is just a series of comparisons. From pygame source:
|
|||
|
|
|
Since your rectangle is aligned, Liang-Barsky might be a good solution. It is faster than Cohen-Sutherland, if speed is significant here. Siggraph explanation |
|||
|
|
|
Use the Cohen-Sutherland algorithm. It's used for clipping but can be slightly tweaked for this task. It divides 2D space up into a tic-tac-toe board with your rectangle as the "center square".
|
||||
|
|
|
Or just use/copy the code already in the Java method
Here is the method after being converted to static for convenience:
|
||||
|
|
|
A quick Google search popped up a page with C++ code for testing the intersection. Basically it tests the intersection between the line, and every border or the rectangle. |
|||
|
|
|
Because the box is axis-aligned, all you need to do is to check for interval intersection in each coordinate. Here is an example in python, with some tests. Note that it is generic for N dimensions, and it is the same algorithm for box-box intersection:
|
|||
|
|
|
I did a little napkin solution.. Next find m and c and hence the equation y = mx + c
Substitute P1 co-ordinates to now find c Now for a rectangle vertex, put the X value in the line equation, get the Y value and see if the Y value lies in the rectangle bounds shown below (you can find the constant values X1, X2, Y1, Y2 for the rectangle such that)
If the Y value satisfies the above condition and lies between (Point1.Y, Point2.Y) - we have an intersection. Try every vertex if this one fails to make the cut. |
|||
|
|
|
I was looking at a similar problem and here's what I came up with. I was first comparing the edges and realized something. If the midpoint of an edge that fell within the opposite axis of the first box is within half the length of that edge of the outer points on the first in the same axis, then there is an intersection of that side somewhere. But that was thinking 1 dimensionally and required looking at each side of the second box to figure out. It suddenly occurred to me that if you find the 'midpoint' of the second box and compare the coordinates of the midpoint to see if they fall within 1/2 length of a side (of the second box) of the outer dimensions of the first, then there is an intersection somewhere.
Of course you could just as easily compare the other way around (checking midpoints of box1 to be within 1/2 length of the outer dimenions of box 2) And even more simplification - shift the midpoint by your half lengths and it's identical to the origin point of that box. Which means you can now check just that point for falling within your bounding range and by shifting the plain up and to the left, the lower corner is now the lower corner of the first box. Much less math:
or non-substituted:
|
||||
|
|
|
coding example in PHP (I'm using an object model that has methods for things like getLeft(), getRight(), getTop(), getBottom() to get the outer coordinates of a polygon and also has a getWidth() and getHeight() - depending on what parameters were fed it, it will calculate and cache the unknowns - i.e. I can create a polygon with x1,y1 and ... w,h or x2,y2 and it can calculate the others) I use 'n' to designate the 'new' item being checked for overlap ($nItem is an instance of my polygon object) - the items to be tested again [this is a bin/sort knapsack program] are in an array consisting of more instances of the (same) polygon object.
|
|||
|
|
|
Some sample code for my solution (in php):
|
|||
|
|