I need a python function that checks if 2 lines intersect or not. I do not need the point of intersection, just whether or not they do intersect. I have looked all over the internet for something like this, and ive found some functions using vector math, like some of the functions found here How do you detect where two line segments intersect? however, these do not work for all points and have quite a few holes in them. I never thought this could be so hard. My friend who is a few years ahead said to use determinants. I havent had linear algebra. I dont really know where to go on this one. I just need to check if the lines intersect given the 4 points that make up the lines. Can anyone give me a link or point me in the right direction?
|
closed as not a real question by Alex Reynolds, Martijn Pieters, UmNyobe, Jean-François Corbett, Mark Oct 23 '12 at 8:59
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
If you are talking about lines (infinite), refer to the Wikipedia article that Nisan.H linked to. In fact, instead of calculating the entire determinant, you can simply calculate the denominator of one of the terms and check if that equals 0. (Although, you need to handle the case in which the lines are coincident) If you are talking about line segments, it has already been asked on Stack Overflow: How do you detect where two line segments intersect? |
|||
|
|
You can form the two equations corresponding to the two infinitely long lines into a system of linear equations, then if the equations do not have a solution, the two infinitely long line are parallel, otherwise they intersect. If they intersect, you can determine if the intersection point lies on either of the two line segments to see if the line segments intersect. |
|||
|
|