You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Taylor Bockman
be0dc761d1
|
5 years ago | |
---|---|---|
.vscode | 5 years ago | |
voronoiview | 5 years ago | |
.gitignore | 5 years ago | |
README.md | 5 years ago | |
example.PNG | 5 years ago | |
main_window.py | 5 years ago | |
requirements-dev.txt | 5 years ago | |
requirements.txt | 5 years ago | |
setup.cfg | 5 years ago | |
voronoiview.py | 5 years ago | |
voronoiview.ui | 5 years ago | |
voronoiview_ui.py | 5 years ago |
README.md
Voronoi View
Some simple software to explore the generation of Voronoi Diagrams with a drawable canvas.
Usage
First install the necessary packages:
pip install -r requirements.txt
Then launch Voronoi View using:
python voronoiview.py
from the root directory.
Development
Make sure to install the development requirements using pip install -r requirements-dev.txt
. This will install
all main requirements as well as useful testing and linting tools.
Regenerating the UI
After modifying the *.ui
file in Qt Designer run
pyuic5 voronoiview.ui -o voronoiview.py
to regenerate the UI python file.