From 8957fb0e1d72ac206d2db38b325d716f57f68c7a Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Mon, 2 Sep 2019 08:40:41 +0800 Subject: [PATCH] add comment --- examples/pyramidal_maze.scad | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/pyramidal_maze.scad b/examples/pyramidal_maze.scad index e9030673..65441d1f 100644 --- a/examples/pyramidal_maze.scad +++ b/examples/pyramidal_maze.scad @@ -55,8 +55,11 @@ module pyramidal_staircase_maze(maze_rows, block_width, stairs_width) { stairs_width ); + // entry translate([0, stairs_width]) square(stairs_width, center = true); + + // exit translate([maze_rows * block_width, maze_rows * block_width - stairs_width]) square(stairs_width, center = true); }