Given a set of points in 2D the resulting polygon can be convex, concave or 'not a polygon'. The definition that I am using for 'not a polygon' is that the line connecting two points crosses another 'polygon' line. I know about taking the dot product (Green's Theorem?) to show convexity and concavity of a polygon. I know that the sum of all interior angles must be (n - 2)*180, and I have a great algorithm from Mathworld for it. But the algorithm is expensive. Is there a way to determine that a set of points is not a polygon which is at least as cheap as the dot product?

MATHWORLD: cos A = (b**2 + c**2 - a**2)/2bc

where A, B, C are the interior angles, and a, b, c are the opposing sides.

To show it is a polygon, cos (SUM(A)) = cos ((n - 2)*180) = +-1

link|improve this question
1  
Voted off-topic. A few months ago, this would have been fine. But now that we have mathematics Stack Exchanges which appear (for now anyway) to be taking in algorithmic questions, this is more suited to there. Now, if you had an algorithm and had difficulty turning it into functioning code in a given language, that's different. – Thomas Owens Aug 20 '10 at 19:47
1  
I agree with @Thomas, this should go on the Mathematics SE site. More importantly, though, you shouldn't tag a question java or c++ unless it has something to do with one of those languages. (If you have some code to post as a starting point, we can reopen this.) – Bill the Lizard Aug 20 '10 at 19:54
I think a good rule of thumb here might be "if it's algorithmic and there's no code involved, go to Mathematics SE". However, if there is code, it belongs here. – Thomas Owens Aug 20 '10 at 21:45
I think this is on-topic. The OP clearly wants to write some code but is still sorting out his ideas (which are a bit muddy). – starblue Aug 21 '10 at 8:36
feedback

closed as off topic by Thomas Owens, Dave Jarvis, Bill the Lizard Aug 20 '10 at 19:52

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

Browse other questions tagged or ask your own question.