1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-18 06:38:14 +01:00

fix type error

This commit is contained in:
Justin Lin 2022-03-31 16:51:02 +08:00
parent 8715bcc927
commit d4fc1279dd

View File

@ -82,7 +82,7 @@ function carve_up(x, y, z, cells) =
cells,
z_y_x_wall(cell) ? [x, y, z, 3, true] :
z_y_wall(cell) ? [x, y, z, 1, true] :
z_x_wall(cell) ? [x, y, z, 6, true] : [x, y, z, 0, true]
z_x_wall(cell) ? [x, y, z, 2, true] : [x, y, z, 0, true]
);
// go left and carve the right wall of the left cell