1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-12 01:34:12 +02:00
This commit is contained in:
Justin Lin
2022-04-03 11:58:46 +08:00
parent b8e52677b3
commit 336648434c

View File

@@ -46,11 +46,9 @@ module cylinder_maze() {
bend(size = [leng_circumference, cell_width * maze_rows + wall_thickness, wall_height], angle = 360 + 360 * wall_thickness / leng_circumference, frags = fn)
translate([0, wall_thickness / 2])
for(wall = walls) {
for(i = [0:len(wall) - 2]) {
for(wall = walls, i = [0:len(wall) - 2]) {
ramp_line(wall[i], wall[i + 1], wall_thickness, wall_height, wall_top_scale);
}
}
}
cylinder_maze();