multimaze/README.md

16 lines
366 B
Markdown
Raw Normal View History

2020-04-29 11:36:41 +00:00
# multimaze
2020-04-30 18:10:32 +00:00
> 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
```