I have line segment defined by two points A(x1,y1,z1) and B(X2,Y2,Z2)

and point p(x,y,z) how to know if this point lay on this line segment

any algorithm , or sample code will be highly appreciated

Best regards

link|improve this question

65% accept rate
Why is this tagged C#? – Karl Knechtel - away from home Aug 13 '11 at 14:09
because I need any sample code in c# – AMH Aug 13 '11 at 14:15
feedback

4 Answers

up vote 3 down vote accepted

If the point is on the line then:

(x - x1) / (x2 - x1) = (y - y1) / (y2 - y1) = (z - z1) / (z2 - z1)

Calculate all three values, and if they are the same (to some degree of tolerance), your point is on the line.

To test if the point is in the segment, not just on the line, you can check that x1 < x < x2, assuming x1 < x2 (or y1 < y < y2, or z1 < z < z2)

link|improve this answer
x,y,z is the point I want t check if lay on or not true ?! – AMH Aug 13 '11 at 13:58
One of them is the point you're checking, and the other two are the endpoints of the line. It doesn't matter which name you give to each point, as long as you are consistent. – Karl Knechtel - away from home Aug 13 '11 at 14:08
AMH yes - for any point (x,y,z) this equality is only true if the the point is on the line . It's basically @Konstantin's parametric line equation answer, but eliminating the parameter p. You don't really care about the exact value of p, only that it has the same value for x, y and z. – Rob Agar Aug 14 '11 at 3:02
feedback

First take the cross product of AB and AP. If they are colinear, then it will be 0.

At this point, it could still be on the greater line extending past B or before A, so then I think you should be able to just check if pz is between az and bz.

This appears to be a duplicate, actually, and as one of the answers mentions, it is in Beautiful Code.

link|improve this answer
could you give me numerical example , I misunderstand the part after the corss product – AMH Aug 13 '11 at 12:01
1  
@AMH Probably best to just see the other discussion on this: stackoverflow.com/questions/328107/… – Cade Roux Aug 13 '11 at 12:03
it's 2D , while I hve 3D problem – AMH Aug 13 '11 at 12:50
It works the same way in 3D. – Karl Knechtel - away from home Aug 13 '11 at 14:07
feedback

Your segment is best defined by parametric equation

for all points on your segment, following equation holds: x = x1 + (x2 - x1) * p y = y1 + (y2 - y1) * p z = z1 + (z2 - z1) * p

Where p is a number in [0;1]

So, if there is a p such that your point coordinates satisfy those 3 equations, your point is on this line. And it p is between 0 and 1 - it is also on line segment

link|improve this answer
you mean I use p for example equal 1 and check – AMH Aug 13 '11 at 12:50
No, you just solve 3 equations against p - if all 3 values are equal within reasonable error (it's floating point - no exact match will be there), then your point is on that straight line. If p is between 0 and 1, then it is inside segment – Konstantin Pribluda Aug 13 '11 at 13:23
feedback

The cross product (B - A) × (p - A) should be much much shorter than B - A. Ideally, the cross product is zero, but that's unlikely on finite-precision floating-point hardware.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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