From 3cd041d2bf14dc375e0a2907a392251272f4053a Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 6 Oct 2019 09:55:21 +0800 Subject: [PATCH] change wall width --- examples/maze/regular_polygon_maze.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/maze/regular_polygon_maze.scad b/examples/maze/regular_polygon_maze.scad index cada4e2b..44fa322f 100644 --- a/examples/maze/regular_polygon_maze.scad +++ b/examples/maze/regular_polygon_maze.scad @@ -75,7 +75,7 @@ module regular_polygon_maze(radius, cblocks, levels, thickness = 1, sides) { cc = get_y(block) - 1; if(no_wall(block) || upper_wall(block)) { - ring_regular_polygon_sector(r * (cr + 1), (cc + 0.5) * arc_angle , thickness, r / 3 , sides); + ring_regular_polygon_sector(r * (cr + 1), (cc + 0.5) * arc_angle , thickness, thickness * 0.75 , sides); } } }