Tagged Questions
10
votes
5answers
2k views
Algorithm to compute a Voronoi diagram on a sphere?
I'm looking for a simple (if exists) algorithm to find the Voronoi diagram for a set of points on the surface of a sphere. Source code would be great. I'm a Delphi man (yes, I know...), but I eat ...
3
votes
6answers
2k views
How do I derive a Voronoi diagram given its point set and its Delaunay triangulation?
I'm working on a game where I create a random map of provinces (a la Risk or Diplomacy). To create that map, I'm first generating a series of semi-random points, then figuring the Delaunay ...
2
votes
1answer
119 views
Fortunes Algorithm - Beach Line Data Structure
I have to implement Fortunes algorithm for constructing Voronoi diagrams.
Important part of the algorithm is a data structure called "Beach Line Data Structure".
It is a binary balanced tree, ...
1
vote
3answers
152 views
Voronoi plot, line crossing
I have the following problem. Initially I create 10 points, in a 2-D space, randomly distributed and then I use the Voronoi function to creat polygons. But I want my Voronoi polyhedra to obey a ...
0
votes
1answer
42 views
Computing per-vertex (site) Voronoi cell areas directly from a Delaunay triangulation
I wish to compute the areas of Voronoi cells which relate to a Delaunay triangulation of a point set without explicitly converting the Delaunay triangulation to a Voronoi graph.
Since I only care ...
0
votes
1answer
428 views
Convex Hull from Voronoi Diagram
I need an algorithm for calculating the convex hull of a set of points from the Voronoi Diagram of the points in O(n). The Voronoi diagram is contained in a bounding box and is stored as a doubly ...