Given two set A and B of lines with n lines in total and a point p. How do u determine if A lines lie in one side of p and B lines lie in the other side?
|
|
Unless all of the lines are mutually parallel, they'll always cross both sides of |
|||
|
|
|
Assuming the following: Then the simple (albeit naive) approach (O(n)) is to simply compare each x value of the lines to the x value of the point (for your given y-value of p). If, for the given y, all the x-coordinates of the set A (or B) are to the left of the given point and for the given x all the y values are NOT above this point, then that set is on one side. Run the same test for the other set and if all the lines are on the other side. Et viola. :) Hope this helps. |
|||||
|