From b022b859ccdada1db47ac3424669791884ce65a7 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sat, 7 Sep 2019 16:43:51 +0800 Subject: [PATCH] replace parentheses --- examples/square_maze.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/square_maze.scad b/examples/square_maze.scad index 0da3d7bb..da48cc32 100644 --- a/examples/square_maze.scad +++ b/examples/square_maze.scad @@ -44,7 +44,7 @@ function set_visited(x, y, maze) = [ [x, y, get_wall_type(b), true] : b ]; -// 0(right)、1(upper)、2(left)、3(down) +// 0(right)、1(upper)、2(left)、3(down) function rand_dirs() = [ [0, 1, 2, 3], @@ -140,7 +140,7 @@ function go_down_from(x, y, maze, rows) = [ ) : b ]; -// 0(right)、1(upper)、2(left)、3(down) +// 0(right)、1(upper)、2(left)、3(down) function try_block(dir, x, y, maze, rows, columns) = dir == 0 ? go_right_from(x, y, maze) : ( dir == 1 ? go_up_from(x, y, maze) : (