Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
do you mean line segments (finite length) or whole lines (infinite length)? – J.F. Sebastian Oct 22 '12 at 22:51
@J.F.Sebastian that wouldn't make much difference, would it? For segments you would just verify whether the intersection point is within both segments after finding whether or not intersection occurs between the two infinite lines, wouldn't you? – Nisan.H Oct 22 '12 at 22:53
1  
en.wikipedia.org/wiki/Line-line_intersection#Mathematics lists the explicit computation of the determinant for the 2-D case. You could pretty much just use that if your problem only involves lines on a plane. – Nisan.H Oct 22 '12 at 22:58
segments is what i mean, sorry – Stonep123 Oct 22 '12 at 23:18
ah ok, well then i would just need to check if that intersection point found using the determinants was on both lines. hmm now to figure out how to do that – Stonep123 Oct 22 '12 at 23:20
show 2 more comments

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.

2 Answers

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?

share|improve this answer
im talking about segments, and the link you posted has solutions that work sometimes, however they do not work always. i need a reliable solution. – Stonep123 Oct 22 '12 at 23:43

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.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.