Skip to content

Commit c26c3e3

Browse files
committed
Use lighter boundary in collapsed vis
1 parent 3c50000 commit c26c3e3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

10.vis.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ collapse Grid { gm, gny, gnx } = Grid { gm = cm, gny = cny, gnx = cnx }
174174
isNotBoundary (y, x) = y > 2 && y < gny - 3 && x > 2 && x < gnx - 3
175175
g (y, x) m = g' (fromJust $ M.lookup (y+1, x+1) m)
176176
g' '?' = inside
177+
g' '#' = '.'
177178
g' ch = ch
178179

179180
inside :: Char

0 commit comments

Comments
 (0)