multimaze/README.md

16 lines
366 B
Markdown

# multimaze
> A collection of maze generation programs
## `main.lua`
Ported back in 2015 (and sine adapted) from an algorithm of my own design that originally implemented in Python.
Now has a 3d mode!
To render a 3D maze as a .STL file, do this:
```bash
lua main.lua maze3d_openscad -w 91 -h 91 -d 71 -f 91x91x71.scad
openscad -o 91x91x71.stl 91x91x71.scad
```