I need to find the Delaunay tessellation of a polygon in Python, and the only libraries I could find (Delny, scikits) triangulate point clouds, not polygons. Any suggestions?
A:
According to Wikipedia's article, the Delaunay triangulation is defined for a set of points, not for a polygon. Could you just pass the set of the polygon's points into one of those libraries?
mvanbem
2009-12-01 22:48:09
It works, but gets rid of all the concavities.
Archagon
2009-12-01 22:54:33