1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-11 01:04:07 +02:00

rename param

This commit is contained in:
Justin Lin
2020-12-19 13:26:43 +08:00
parent fcf2cc1511
commit c2251eb3dd

View File

@@ -1,9 +1,9 @@
use <_impl/_mz_blocks_impl.scad>;
use <mz_square_initialize.scad>;
function mz_square_blocks(rows, columns, start = [0, 0], maze, x_wrapping = false, y_wrapping = false, seed) =
function mz_square_blocks(rows, columns, start = [0, 0], init_blocks, x_wrapping = false, y_wrapping = false, seed) =
go_maze(
start[0], start[1], // starting point
is_undef(maze) ? mz_square_initialize(rows, columns) : maze,
is_undef(init_blocks) ? mz_square_initialize(rows, columns) : init_blocks,
rows, columns, x_wrapping, y_wrapping, seed
);