From f266d18efa6f59573b8923ab56fec7dfa617e748 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sat, 7 Sep 2019 16:18:27 +0800 Subject: [PATCH] fix a_step --- examples/square_maze.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/square_maze.scad b/examples/square_maze.scad index 4b1c33cc..0da3d7bb 100644 --- a/examples/square_maze.scad +++ b/examples/square_maze.scad @@ -267,7 +267,7 @@ function y_twist(walls, angle, rows, columns, block_width) = for(wall_pts = walls) [for(pt = wall_pts) [pt[0], pt[1], 0] + [-x_offset, 0, 0]] ], - a_step = angle / rows + a_step = angle / (rows * block_width) ) [ for(wall_pts = x_centered)