From 780ecc3c06654151dfdd8625c18c1ea3a943792c Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sat, 17 Jul 2021 18:12:12 +0800 Subject: [PATCH] update params --- examples/maze/maze_tower.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/maze/maze_tower.scad b/examples/maze/maze_tower.scad index 2237b9c6..b189e2f4 100644 --- a/examples/maze/maze_tower.scad +++ b/examples/maze/maze_tower.scad @@ -5,7 +5,7 @@ use ; $fn = 48; -rows = 4; +rows = 6; beginning_number = 5; cell_width = 2; @@ -83,7 +83,7 @@ module maze_tower() { theta1 = outThetaStep * ci; theta2 = outThetaStep * (ci + 1); linear_extrude(wall_height) - arc(r * 0.9999, [theta1 + 2, theta2 - 2], wall_thickness); + arc(r * 0.9999, [theta1 + outThetaStep * 0.1, theta1 + outThetaStep * 0.75], wall_thickness); } module d_stairs() {