Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exciteabletom/mazegenerator
Mazegenerator for black and white images
https://github.com/exciteabletom/mazegenerator
maze maze-generation mazes python
Last synced: about 1 month ago
JSON representation
Mazegenerator for black and white images
- Host: GitHub
- URL: https://github.com/exciteabletom/mazegenerator
- Owner: exciteabletom
- License: gpl-3.0
- Created: 2020-03-29T14:17:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-22T16:45:59.000Z (over 4 years ago)
- Last Synced: 2024-11-14T09:42:22.569Z (about 1 month ago)
- Topics: maze, maze-generation, mazes, python
- Language: Python
- Homepage: https://pypi.org/project/mazegenerator
- Size: 22.2 MB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Maze Generator
This program generates a random black and white maze image. The mazes that are generated can be solved with mazesolver
## InstallingCheck that your python version is >=3.5 with `python3 -V`.
Also make sure that pip is installed with `python3 -m pip -V`.To install, simply run `python3 -m pip install mazegenerator --user` on the command line.
You can run the tool using `mazegenerator`(unix-based) or `mazegenerator.exe` (windows).
## How do I use it?
You can use `mazegenerator --help` to get a list of commands.
Normal usage will look something like this: `mazegenerator -x 200 -y 300`
## What are the rules for maze images?
- Walls marked with black pixels and paths marked with white pixels- Walls around the entire maze
- One entrance on the top row and one exit on the bottom row