I have a System.Windows.Shapes.Polygon object, whose layout is determined completely by a series of Points. I need to determine if this Polygon is self intersecting; i.e., if any of the sides of the polygon intersect any of the other sides at a point which is not a vertex. Is there an easy/fast way to compute this?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 11 down vote accepted
  • Easy, slow, low memory footprint: compare each segment against against all others and check for intersections. Complexity O(n2).

  • Slightly faster, medium memory footprint (modified version of above): store edges in spatial "buckets", then perform above algorithm on per-bucket basis. Complexity O(n2 / m) for m buckets (assuming uniform distribution).

  • Fast & high memory footprint: use a spatial hash function to split edges into buckets. Check for collisions. Complexity O(n).

  • Fast & low memory footprint: use a sweep-line algorithm, such as the one described here (or here). Complexity O(n log n)

The last is my favorite as it has good speed - memory balance, especially the Bentley-Ottmann algorithm. Implementation isn't too complicated either.

link|improve this answer
I'm trying to get my head around the last algorithm as we speak; particularly, I'm having trouble tracking on the meaning/purpose of structure T. – GWLlosa Feb 2 '11 at 15:35
T is a structure, which contains the line segments that cross the sweep line L. The most efficient structure would be a binary search tree (see also the Bentley–Ottmann algorithm). – Daniel Gehriger Feb 2 '11 at 15:40
I added another link where the Bentley-Ottmann algorithm is described with illustrations. – Daniel Gehriger Feb 2 '11 at 15:43
So C(p) is all the line segments (found in T) where p is a point that is colinear with the line segment, then. – GWLlosa Feb 2 '11 at 15:44
Yes; but by definition of T, that point p will always be inside the line segments. – Daniel Gehriger Feb 2 '11 at 15:50
show 3 more comments
feedback

Check if any pair of non-contiguous line segments intersects.

link|improve this answer
They should all intersect at the vertexes; the question then becomes what the fastest way to check for a non-vertex intersection among an arbitrary set of line segments is. – GWLlosa Feb 2 '11 at 15:18
Good point, edited it to check if non-contiguous segments intersect. I don't think there's a built-in method, you'll have to write a method. Start by getting the Polygon.Points – Justin Morgan Feb 2 '11 at 15:21
feedback

Your Answer

 
or
required, but never shown

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