I have a scipy.spatial.Delaunay()
triangulation, and I would like to remove 'skinny' triangles from it. How would I do this?
I have seen that some other software (like here: Houdini triangulate2d) have a 'minimum angle' option precisely to prevent skinny triangles. Is there some equivalent option for scipy.spatial.Delaunay()
, or can someone provide a simple algorithm?