java Programming Glossary: triangulation
How does this code for delaunay triangulation work? http://stackoverflow.com/questions/5825089/how-does-this-code-for-delaunay-triangulation-work does this code for delaunay triangulation work I have this Java code that with a set of Point in input.. return a set of graph's edge that represent a Delaunay triangulation. I would like to know what strategy was used to do this if exist.. contains two awt Point and represent an edge in the triangulation GraphPoint extends Awt Point and the edges of final triangulation..
|