🌐 EN

🧩 Voronoi Diagram Generator

Generate colorful Voronoi diagrams from random or hand-placed points. Every cell contains the region closest to one seed point. Reseed, click to add points, and save a PNG.

30

Tip: click anywhere on the canvas to add a seed point.

GUIDE

Learn more

01

What is a Voronoi diagram?

A Voronoi diagram takes a set of seed points and partitions the plane into cells β€” one cell per seed. A cell contains every location that is closer to its own seed than to any other seed. The result is a mosaic of regions whose boundaries lie exactly halfway between neighboring seeds. It is named after the mathematician Georgy Voronoy, who formalized the construction in 1908.
02

Where Voronoi diagrams are used

Voronoi diagrams answer "which point is nearest?" questions, so they turn up everywhere. They power nearest-facility and store-catchment analysis, model cell-phone tower coverage, describe territories and resource competition in ecology, and generate organic procedural textures and game maps. In computational geometry they are also a foundation for mesh generation and spatial interpolation.
03

Voronoi and Delaunay are duals

A Voronoi diagram has a twin: the Delaunay triangulation is its dual graph. Connect every pair of seeds whose Voronoi cells share an edge, and you get the Delaunay triangulation of those seeds; conversely, the Voronoi diagram can be recovered from the triangulation. The two encode the same neighbor relationships from opposite directions β€” explore the companion construction with our Delaunay Triangulation tool.

Frequently asked questions

What does each colored cell mean?
Each cell is colored to mark a region: every point inside it is closer to that cell's seed than to any other seed. Cross a boundary and you have entered the territory of a different, nearer seed.
Can I place my own points?
Yes. Click anywhere on the canvas to drop a new seed, and the diagram redraws instantly around it. Use Reseed to scatter a fresh random set, or Clear to start from an empty canvas.
What is the relationship to Delaunay triangulation?
They are geometric duals: the Delaunay triangulation connects seeds whose Voronoi cells are neighbors, so either structure can be derived from the other. They capture the same nearest-neighbor information in complementary forms.