Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Fast Voronoi Diagram in C#

0.00/5 (No votes)
15 Jul 2014 1  
Fortune Voronoi Diagram in C#

Introduction

This project implements Steve Fortune's algorithm for Voronoi diagram in C#.

I translated the algorithm to C# from Zhenyu Pan's Java version.

The Project

The project is divided into two parts:

  1. Files: Voronoi.cs, VoronoiElements.cs are the algorithm itself, for your projects, you need these files.
  2. The program itself is a simple demonstration to test the code and show how it is used.

The project is done in SharpDevelop, EXE file is found in \Voronoi2\bin\Debug\ path.

How to Use the Code in Your Projects

This is very simple, you need the files: Voronoi.cs, VoronoiElements.cs.

In your code, create a "Voronoi" object.

Create two arrays for X, Y coordinates of any given set of locations.

Use the function "generateVoronoi", provide the function with those arrays.

For example:

// Create Voronoi Object
Voronoi voroObject = new Voronoi ( Error_Margin_Between_Sites );
// Generate the diagram
List<GraphEdge> ge = voroObject.generateVoronoi ( xVal, yVal, 0, width, 0, height );
// where xVal, yVal are arrays for X,Y coordinates,
// the remaining parameters describe the surrounding box around all the sites
// ge the resulting Voronoi Edges

You get a List of voronoi edges. "ge" in the example.

The code doesn't calculate Voronoi Cells, but having those edges you can do it easily.

References

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here