Generate a simple maze using the depth-first algorithm
$ pip install -r requrirements.txt
python maze.py
-
Set number of cells for width/height or how many pixels for cell wall
maze = Maze(width=50, height=25, cell_width=15)

-
Or just use the defaults!
maze = Maze()
