mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-28 08:50:30 +02:00
refactor
This commit is contained in:
@@ -19,19 +19,18 @@ function _mz_mask(mask) =
|
||||
columns = len(mask[0])
|
||||
)
|
||||
[
|
||||
for(y = [0:rows - 1])
|
||||
for(x = [0:columns - 1])
|
||||
mask[rows - y - 1][x] == 0 ?
|
||||
cell(
|
||||
x, y,
|
||||
4, // mask
|
||||
true // visited
|
||||
)
|
||||
:
|
||||
cell(
|
||||
x, y,
|
||||
// all cells have top and right walls
|
||||
3, // unvisited
|
||||
false
|
||||
)
|
||||
for(y = [0:rows - 1], x = [0:columns - 1])
|
||||
mask[rows - y - 1][x] == 0 ?
|
||||
cell(
|
||||
x, y,
|
||||
4, // mask
|
||||
true // visited
|
||||
)
|
||||
:
|
||||
cell(
|
||||
x, y,
|
||||
// all cells have top and right walls
|
||||
3, // unvisited
|
||||
false
|
||||
)
|
||||
];
|
@@ -104,8 +104,7 @@ function config_nbrs(maze) =
|
||||
]
|
||||
],
|
||||
cell_outwards_lt = [
|
||||
for(row = mz_empty_outs)
|
||||
for(c = row)
|
||||
for(row = mz_empty_outs, c = row)
|
||||
let(
|
||||
ri = get_ri(c),
|
||||
ci = get_ci(c),
|
||||
|
Reference in New Issue
Block a user