Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jedrzejboczar/flood-fill
https://github.com/jedrzejboczar/flood-fill
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jedrzejboczar/flood-fill
- Owner: jedrzejboczar
- Created: 2020-04-24T20:36:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-22T07:40:37.000Z (over 2 years ago)
- Last Synced: 2023-03-05T12:05:26.706Z (almost 2 years ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flood-fill
Simple code for testing the flood fill algorithm for maze solving.
This code is old and ugly, use it at your own risk. I was just using it to find
out the errors in my flood fill implementation. At first this was command line
only, but later I brutally injected some quick visualization in Qt. There are no
command line arguments. If you have enough courage, look through the code and
modify variables there. Or maybe even rewrite it :)Make sure that you have installed `requirements.txt`, e.g.
```
python -m pip install -r requirements.txt
```For text-based visualization:
```
python maze.py
```For graphical visualization:
```
python gui.py
```