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
feedback
|
|
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) | |||||||
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. | |||||||||||
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 | |||||
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. | |||
|
feedback
|