mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-12 20:10:34 -05:00
21 lines
750 B
Markdown
21 lines
750 B
Markdown
---
|
|
title: Voronoi Diagram
|
|
showthedate: false
|
|
---
|
|
|
|
A Voronoi diagram is a partitioning of a plan into regions based on distance to points in a specific subset of the plane.
|
|
|
|
The set of points (often called seeds, sites, or generators) is specified beforehand, and for each seed there is a corresponding region consisting of all points closer to that seed than any other.
|
|
|
|
Different metrics may be used and often result in different Voronoi diagrams
|
|
|
|
**Euclidean**
|
|
|
|
![](https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Euclidean_Voronoi_diagram.svg/382px-Euclidean_Voronoi_diagram.svg.png)
|
|
|
|
**Manhattan**
|
|
|
|
![](https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Manhattan_Voronoi_Diagram.svg/382px-Manhattan_Voronoi_Diagram.svg.png)
|
|
|
|
|
|
|