Implementing Bowyer-Watson algorithm for delaunay triangulation
问题 I am trying to implement the following Bowyer-Watson algorithm to implement Delaunay Triangulation. function BowyerWatson (pointList) // pointList is a set of coordinates defining the points to be triangulated triangulation := empty triangle mesh data structure add super-triangle to triangulation // must be large enough to completely contain all the points in pointList for each point in pointList do // add all the points one at a time to the triangulation badTriangles := empty set for each