-
Notifications
You must be signed in to change notification settings - Fork 0
Algorithm Outline
martin-mfg edited this page Nov 6, 2012
·
3 revisions
V0.2
Definition 1: A Voronoi edge is called 'red' iff the points in the adjacent areas are red
Given a set R of red and blue points, initially containing red ones only.
-
Find a Delaunay circle for each red Voronoi edge, the smallest. Put them into a set C of circles.
-
Get the arrangement faces of C in a suitable format to store information like which face covers which circles.
-
Find a minimal set M of faces which covers each circle.
-
Remove all blue points in R.
-
For each face in M add a blue points to R.
-
Calculate the Voronoi graph of R again.
-
Continue with step 1 if there are red edges.