1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-31 02:10:28 +02:00

change to 0-based

This commit is contained in:
Justin Lin
2020-12-19 11:14:47 +08:00
parent 931c388ad2
commit fcf2cc1511
16 changed files with 48 additions and 59 deletions

View File

@@ -17,7 +17,7 @@ module pyramid_maze(maze_rows, block_width, wall_thickness) {
intersection() {
linear_extrude(leng * 2)
translate([-half_leng, -half_leng])
square_maze([1, 1], maze_rows, block_width, wall_thickness);
square_maze(maze_rows, block_width, wall_thickness);
pyramid(leng + wall_thickness);
}