I need a .Net Voronoi library or geometry library with support for Voronoi diagrams and preferably Delaunay triangulation. The following characteristics are required:

  1. No interop OR if it has an interop dependency, it needs to be prebuilt and ready to reference
  2. Needs to support irregular bounding polygons so that I can generate recursive (fractal) Voronoi diagrams
  3. Purely vector-based - I don't need/want to generate bitmaps
  4. Support for double precision preferred but not essential
  5. I'd prefer a fast, efficient library, but I am relaxed on this point (within reason)
  6. Free and/or open source
link|improve this question

feedback

1 Answer

I've also been looking for a C# Voronoi library but couldn't find anything other than this;

http://www.codeproject.com/Articles/11275/Fortune-s-Voronoi-algorithm-implemented-in-C

Used it in a small project last year, it works but you'll probably want to improve it ( maybe change same structures and output etc )

also if there is any other library you found, please let me know.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.