How to find intersections between two (or more) 3D planar polygons (for the simplest case they are all convex)? Seeking algorithms able to provide the intersection line if there is any. Note the methods proposed for infinite Plane-Plane cases are not useful.
feedback
|
|
There are 2 cases: Both polygons lie on the same plane. Find all internal points to the first polygon. Arbitrarily take the first polygon, loop through all the vertices of the 2nd polygon and determine whether they lie inside or outside the first polygon. Doing this is easy for convex polygons: see here. Find the intersection points between the 2 polygons To find the intersection points take each edge of one of the polygons and loop through all the edges of the other polygon to find if they intersect anywhere. this can be found by using the formula for the intersection of 2 lines. The intersected region is the polygon formed with vertices at the internal points and the intersected points. The 2 polygons lie on different planes. Find the intersection of the 2nd polygon with the plane of the first one. You can do this by considering each edge of the 2nd polygon, and finding the intersection between the edge and the plane of the first polygon. This can be found using the formula for the intersection between a line and a plane. Check whether the intersection points you found lie inside or outside of the first polygon. | ||||
feedback
|
|
Here is one way. By rotating one polygon to the XY plane, you reduce the 3D problem to a 2D problem (mostly), and it is normally not too much of a performance issue.
It is left as an exercise to the reader to extend this method to non-convex polygons. :) (It's actually pretty easy.) One way to check to see if a point is inside a 2D polygon is to get the intersections of a line from that point upward with all the edges of the polygon. 0 or 2: outside. 1: inside. (This also works for a non-convex polygon using even and odd for outside and inside.) | |||
feedback
|
|
For the case that both polygons are co-planar, then here is at least a solution for this particular case: http://www.iro.umontreal.ca/~plante/compGeom/algorithm.html It even has a nice applet showing the algorithm. | |||||
feedback
|
|
Yes, GPC is 2D. What I meant is if the approach I took to reduce the dimension from 3D to 2D is correct? I did not rotate the plane to the X-Y plane because I don't know how much I should rotate and to which direction I should. So what I do is that I look at the normal of the plane and isolate the largest absolute component. If the largest component is, say Y, I remove the Y components of all the points. The remaining X and Z make the x & y coordinates of a 2D point. I implemented in my code, it seems to works but some parts of a polygons, which I thought should be there, disappear. I am not sure if it is caused because of the way I reduce the dimension or because of something else in my codes. | |||
|
feedback
|