Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tchaumeny/py-voronoi

A basic implementation of the sweep line algorithm for Voronoï diagram computation
https://github.com/tchaumeny/py-voronoi

Last synced: 9 days ago
JSON representation

A basic implementation of the sweep line algorithm for Voronoï diagram computation

Awesome Lists containing this project

README

        

py-voronoi
==========

A basic implementation of the sweep line algorithm for Voronoï diagram computation

```python
v = Voronoi([Point(0.0, 0.0), Point(0.0, 1.0), Point(-0.5, 0.5)])
v.vertices # [Point(-0.0, 0.5)]
v.edges # [VoronoiEdge(...), ...]
```