Home

Awesome

Voronoi-diagram

Implementation of voronoi diagram with incremental algorithm

Description of files

How to Import and Run the Algorithm

To try out this algorithm with your data points, run

from voronoid import Xygraph
from drawvoronoid import plotVoronoi

points = [(0, 1), (1, 8), (9, 0), (9, 4), (10, 10)]
plotVoronoi(points, -1, 13, -1, 11)

image