How do I determine whether or not two lines intersect, and if they do, at what x,y point?
|
|
There’s a nice approach to this problem that uses vector cross products. Define the 2-dimensional vector cross product v × w to be vxwy − vywx (this is the magnitude of the 3-dimensional cross product). Suppose the two line segments run from p to p + r and from q to q + s. Then any point on the first line is representable as p + t r (for a scalar parameter t) and any point on the second line as q + u s (for a scalar parameter u).
The two lines intersect if we can find t and u such that:
Cross both sides with s, getting
And since s × s = 0, this means
And therefore, solving for t:
In the same way, we can solve for u:
Now if r × s = 0 then the two lines are parallel. (There are two cases: if (q − p) × r = 0 too, then the lines are collinear, otherwise they never intersect.) Otherwise the intersection point is on the original pair of line segments if 0 ≤ t ≤ 1 and 0 ≤ u ≤ 1. (Credit: this method is the 2-dimensional specialization of the 3D line intersection algorithm from the article "Intersection of two lines in three-space" by Ronald Goldman, published in Graphics Gems, page 304. In three dimensions, the usual case is that the lines are skew (neither parallel nor intersecting) in which case the method gives the points of closest approach of the two lines.) |
|||||||||||||||||||||
|
|
FWIW, the following function (in C) both detects line intersections and determines the intersection point. It is based on an algorithm in Andre LeMothe's "Tricks of the Windows Game Programming Gurus". It's not dissimilar to some of the algorithm's in other answers (e.g. Gareth's). LeMothe then uses Cramer's Rule (don't ask me) to solve the equations themselves. I can attest that it works in my feeble asteroids clone, and seems to deal correctly with the edge cases described in other answers by Elemental, Dan and Wodzu. It's also probably faster than the code posted by KingNestor because it's all multiplication and division, no square roots! I guess there's some potential for divide by zero in there, though it hasn't been an issue in my case. Easy enough to modify to avoid the crash anyway.
BTW, I must say that in LeMothe's book, though he apparently gets the algorithm right, the concrete example he shows plugs in the wrong numbers and does calculations wrong. For example:
That confused me for hours. :( |
|||||||||||||||||
|
|
I have tried to implement the algorithm so elegantly described by Jason above; unfortunately while working though the mathematics in the debugging I found many cases for which it doesn't work. For example consider the points A(10,10) B(20,20) C(10,1) D(1,10) gives h=.5 and yet it is clear by examination that these segments are no-where near each other. Graphing this makes it clear that 0 < h < 1 criteria only indicates that the intercept point would lie on CD if it existed but tells one nothing of whether that point lies on AB. To ensure that there is a cross point you must do the symmetrical calculation for the variable g and the requirement for interception is: 0 < g < 1 AND 0 < h < 1 |
|||||||||
|
|
The problem reduces to this question: Do two lines from A to B and from C to D intersect? Then you can ask it four times (between the line and each of the four sides of the rectangle). Here's the vector math for doing it. I'm assuming the line from A to B is the line in question and the line from C to D is one of the rectangle lines. My notation is that
This The exact point of intersection is More Fun: If Specifically, Therefore, If Derivation: A and C are vectors that point to the start of the line; E and F are the vectors from the ends of A and C that form the line. For any two non-parallel lines in the plane, there must be exactly one pair of scalar
Why? Because two non-parallel lines must intersect, which means you can scale both lines by some amount each and touch each other. (At first this looks like a single equation with two unknowns! But it isn't when you consider that this is a 2D vector equation, which means this is really a pair of equations in We have to eliminate one of these variables. An easy way is to make the You now have:
|
|||||||||||||||||||||
|
|
The answer "accepted" here is incorrect. It does not correctly eliminate all non-intersections. Trivially it may appear to work but it can fail, especially in the case that 0 and 1 are considered valid for h. Consider the following case: Lines at (4,1)-(5,1) and (0,0)-(0,2) These are perpendicular lines which clearly do not overlap. A=(4,1) According to the above answer, these two line segments meet at an endpoint (values of 0 and 1). That endpoint would be: (0,0)+(0,-2)*0=(0,0) So, apparently the two line segments meet at (0,0), which is on line CD, but not on line AB. So what is going wrong? The answer is that the values of 0 and 1 are not valid and only sometimes HAPPEN to correctly predict endpoint intersection. When the extension of one line (but not the other) would meet the line segment, the algorithm predicts an intersection of line segments, but this is not correct. I imagine that by testing starting with AB vs CD and then also testing with CD vs AB, this problem would be eliminated. Only if both fall between 0 and 1 inclusively can they be said to intersect. I recommend using the vector cross product method if you must predict end-points. -Dan |
|||||
|
|
Take a look at this code: (It is javascript, but I think you can get the idea) http://www.kevlindev.com/gui/math/intersection/Intersection.js Look at:
Here is a demo: http://www.kevlindev.com/geometry/2D/intersections/intersect_line_rect.svg |
|||||
|
|
Found the answers here rather irritating. There is a short tutorial on geometry concept on topcoder which helped me. http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=geometry2 |
|||
|
|
|
Here's an improvement to Gavin's answer. marcp's solution is similar also, but neither postpone the division. This actually turns out to be a practical application of Gareth Rees' answer as well, because the cross-product's equivalent in 2D is the perp-dot-product, which is what this code uses three of. Switching to 3D and using the cross-product, interpolating both s and t at the end, results in the two closest points between the lines in 3D. Anyway, the 2D solution:
Basically it postpones the division until the last moment, and moves most of the tests until before certain calculations are done, thereby adding early-outs. Finally, it also avoids the division by zero case which occurs when the lines are parallel. You also might want to consider using an epsilon test rather than comparison against zero. Lines that are extremely close to parallel can produce results that are slightly off. This is not a bug, it is a limitation with floating point math. |
||||
|
Question C: How do you detect whether or not two line segments intersect? I have searched for the same topic and I wasn't happy with the answers. So I have written an article that explains very detailed how to check if two line segments intersect with a lot of images. There is complete (and tested) Java-code. Here is the article, cropped to the most important parts: The algorithm, that checks if line segment a intersects with line segment b, looks like this:
What are bounding boxes? Here are two bounding boxes of two line segments:
If both bounding boxes have an intersection, you move line segment a so that one point is at (0|0). Now you have a line through the origin defined by a. Now move line segment b the same way and check if the new points of line segment b are on different sides of line a. If this is the case, check it the other way around. If this is also the case, the line segments intersect. If not, they don't intersect. Question B: How do you detect whether or not two lines intersect? Lets say your point
|
||||
|
|
|
You might find some useful information in the question I previously asked about this very topic (but with GDI+) at http://stackoverflow.com/questions/153592/how-do-i-determine-the-intersection-point-of-two-lines-in-gdi. |
|||
|
|
|
This is working well for me. Taken from here.
|
|||||||
|
|
Here there is Matlab function with a very fast algorithm which calculates the intersection point between two line segments: From Mathworks (author: Douglas Schwarz): Description This function computes the (x,y) locations where two curves intersect. The curves can be broken with NaNs or have vertical segments. It is also very fast (at least on data that represents what I think is a typical application). |
||||
|
|
I tried some of these answers, but they didnt work for me (sorry guys); after some more net searching I found this. With a little modification to his code I now have this function that will return the point of intersection or if no intersection is found it will return -1,-1.
|
||||
|
|
|
Just wanted to mention that a good explanation and explicit solution can be found in the Numeric Recipes series. I've got the 3rd edition and the answer is on page 1117, section 21.4. Another solution with a different nomenclature can be found in a paper by Marina Gavrilova Reliable Line Section Intersection Testing. Her solution is, to my mind, a little simpler. My implementation is below:
|
|||
|
|
|
Processing.js has a demo with sample code. |
|||
|
|
|
From Gareth Rees' answer for C and Objective-C. Many of the functions and structs are private, but you should pretty easy be able to know what's going on.
|
|||
|
|
|
I tried lot of ways and then I decided to write my own. So here it is:
Based on these two formulas: (I simplified them from equation of lines and other formulas)
|
|||
|
|
|
If each side of the rectangle is a line segment, and the user drawn portion is a line segment, then you need to just check the user drawn segment for intersection with the four side line segments. This should be a fairly simple exercise given the start and end points of each segment. |
|||
|
|







