|
1 | 1 | # 3d-maze-generator
|
2 |
| -This is a parametric model for a 3D maze. Generates openscad which can render to STL. |
| 2 | + |
| 3 | +This is a parametric model for a 3D maze. Generates openscad which can render |
| 4 | +to STL. It uses Prim's algorithm to generate the maze so it has a defined |
| 5 | +start. |
| 6 | + |
| 7 | +The maze is generated randomly but the start is always on the same face. |
| 8 | +Parameters like size, diameter, and number of nodes can be supplied. |
| 9 | + |
| 10 | +## Usage |
| 11 | + |
| 12 | +``` |
| 13 | +3D maze generator. Uses Prim's alg to generator maze with |
| 14 | +a start and an end and no loops. Outputs openscad. |
| 15 | +
|
| 16 | +Usage: |
| 17 | + maze.py -h |
| 18 | + maze.py [-x WIDTH] [-y HEIGHT] [-z DEPTH] [-r RES] [-n SPACING] [-d DIAMETER] [-m | -s] <output.scad> |
| 19 | +Options: |
| 20 | + -h, --help Show this help message and exit |
| 21 | + -x --width WIDTH Number of cells wide [default: 5] |
| 22 | + -y --height HEIGHT Number of cells high [default: 5] |
| 23 | + -z --depth DEPTH Number of cells deep [default: 5] |
| 24 | + -r --resolution RES Resolution of rendering [default: 25] |
| 25 | + -n --node-spacing SPACING Distance between nodes in mm [default: 8.0] |
| 26 | + -d --diameter DIAMETER Diameter of nodes in mm [default: 6.0] |
| 27 | + -m --enable-mesh Creates a cross hatch mesh and subtracts maze from it. |
| 28 | + -s --enable-solid Creates a solid cube and subtracts maze from it. |
| 29 | +Examples: |
| 30 | +maze.py output.scad |
| 31 | +maze.py [-x 10] [-y 5] [-z 4] [-n 10] [-d 3] [-m | -s] <output.scad> |
| 32 | +``` |
| 33 | + |
| 34 | +## Pictures |
| 35 | + |
| 36 | + |
| 37 | + |
| 38 | + |
| 39 | +# LICENSE |
| 40 | + |
| 41 | +Copyright (c) 2017 Conor Patrick |
| 42 | + |
| 43 | +Permission is hereby granted, free of charge, to any person obtaining a copy |
| 44 | +of this software and associated documentation files (the "Software"), to deal |
| 45 | +in the Software without restriction, including without limitation the rights |
| 46 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 47 | +copies of the Software, and to permit persons to whom the Software is |
| 48 | +furnished to do so, subject to the following conditions: |
| 49 | + |
| 50 | +The above copyright notice and this permission notice shall be included in all |
| 51 | +copies or substantial portions of the Software. |
| 52 | + |
| 53 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 54 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 55 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 56 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 57 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 58 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 59 | +SOFTWARE. |
0 commit comments