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

View File

@@ -46,10 +46,8 @@ 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]) {
ramp_line(wall[i], wall[i + 1], wall_thickness, wall_height, wall_top_scale);
}
for(wall = walls, i = [0:len(wall) - 2]) {
ramp_line(wall[i], wall[i + 1], wall_thickness, wall_height, wall_top_scale);
}
}