I'm looking for an algorithm to test whether or not a polygon is 'strictly' simple. Usually the test involves checking for intersection between any of the polygon segments. But here, since I want to check for cases that don't always fall under edge-edge intersection, I'm not too sure what to look for.
In the above image, B C and D aren't simple polygons, but only D would fail the intersection test. My terminology (in terms of strictly simple) may be a little off as well, but I think the picture illustrates what I mean.
Say two lines do intersect if they have at least a common point.
Take one edge and count the intersections with any other edges. If it has
So in my opinion, your worries are ill-founded:
But here, since I want to check for cases that don't always fall under edge-edge intersection [...]
This approach works here too.