I've got a line through points (x1,y1) and (x2, y2). I'd like to see if point (x3, y3) lies to the "left" or "right" of said line. How would I do so?
|
|
Try this code it make use of cross product
Where a = line point 1; b = line point 2; c = point to check against. If the formula is equal to 0 points are colinear. If the line is horizontal, then this returns true if the point is above the line. |
||||
|
You look at the sign of the determinant of
It will be positive for points on one side, and negative on the other (and zero for points on the line itself). |
||||
|
|
|
The vector (y1-y2,x2-x1) is perpendicular to the line, and always pointing right (or always pointing left, if you plane orientation is different from mine). You can then compute the dot product of that vector and (x3-x1,y3-y1) to determine if the point lies on the same side of the line as the perpendicular vector (dot product > 0) or not. |
|||
|
|
|
First check if you have a vertical line:
Then, calculate the slope: Then, create an equation of the line using point slope form: Now plug in
|
|||||||||
|
|
I implemented this in java and ran a unit test (source below). None of the above solutions work. This code passes the unit test. If anyone finds a unit test that does not pass, please let me know. Code: NOTE: nearlyEqual(double,double) returns true if the two numbers are very close.
Here's the unit test:
|
|||
|
|
|
Assuming the points are (Ax,Ay) (Bx,By) and (Cx,Cy), you need to compute: (Bx - Ax) * (Cy - Ay) - (By - Ay) * (Cx - Ax) This will equal zero if the point C is on the line formed by points A and B, and will have a different sign depending on the side. Which side this is depends on the orientation of your (x,y) coordinates, but you can plug test values for A,B and C into this formula to determine whether negative values are to the left or to the right. |
|||||
|
|
Say if your line is defined as
Negative values are points below the line, positive are above and 0 means the point belongs to the line. Hope to have helped |
|||