1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-04-20 06:02:05 +02:00
This commit is contained in:
Justin Lin 2019-09-08 19:45:36 +08:00
parent ccd0be5551
commit bfba37c99f

View File

@ -30,7 +30,7 @@ module pyramid_with_stairs(base_width, stairs_width, rows) {
}
}
module pyramidal_staircase_maze(maze_rows, block_width, stairs_width) {
module step_pyramid_maze(maze_rows, block_width, stairs_width) {
maze_blocks = go_maze(
1, 1, // starting point
starting_maze(maze_rows, maze_rows),
@ -67,4 +67,4 @@ module pyramidal_staircase_maze(maze_rows, block_width, stairs_width) {
}
}
pyramidal_staircase_maze(maze_rows, block_width, stairs_width);
step_pyramid_maze(maze_rows, block_width, stairs_width);