Efficient Delaunay triangulation

AlonH picture AlonH · Sep 5, 2011 · Viewed 37.9k times · Source

I'm looking for a .NET implementation which builds Delaunay triangulation from set of points.

I have already tested couple of implementations but they all worked only for small amount of points (up to 20,000).

I need something that can handle 500,000 points in reasonable time.

Answer

Ashwin Nanjappa picture Ashwin Nanjappa · Jul 4, 2013

If you want to construct the 2D Delaunay triangulation, use Triangle.Net. It is a direct C# port of Shewchuk's famous Triangle program.