mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-14 02:34:12 +02:00
rename param
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
use <_impl/_mz_blocks_impl.scad>;
|
use <_impl/_mz_blocks_impl.scad>;
|
||||||
use <mz_square_initialize.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(
|
go_maze(
|
||||||
start[0], start[1], // starting point
|
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
|
rows, columns, x_wrapping, y_wrapping, seed
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user