1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-06 23:06:43 +02:00

del sorted param

This commit is contained in:
Justin Lin
2022-09-18 11:15:39 +08:00
parent 5578c169b0
commit 469fdcc6f7

View File

@@ -37,7 +37,7 @@ module maze_masking(start, mask, cell_width, wall_thickness, wall_height, base_h
pts = contour ? pts = contour ?
vx_contour([ vx_contour([
for(y = [0:rows - 1], x = [0:columns - 1]) if(mask[rows - y - 1][x] == 1) [x, y] for(y = [0:rows - 1], x = [0:columns - 1]) if(mask[rows - y - 1][x] == 1) [x, y]
], sorted = true) : ]) :
[]; [];
walls = mz_squarewalls(cells, cell_width); walls = mz_squarewalls(cells, cell_width);