mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-23 23:03:23 +02:00
rename parameters
This commit is contained in:
@@ -38,7 +38,7 @@ module cylinder_maze() {
|
||||
maze_blocks = mz_square_blocks(
|
||||
[1, maze_rows],
|
||||
maze_rows, maze_columns,
|
||||
x_circular = true
|
||||
x_wrapping = true
|
||||
);
|
||||
|
||||
walls = mz_square_walls(maze_blocks, maze_rows, maze_columns, block_width, left_border = false);
|
||||
|
@@ -33,7 +33,7 @@ module heart_base(name, font_name, font_size, radius, ring_thickness, tip_r_of_h
|
||||
module heart2heart_maze(names, font_name, font_size, radius_of_heart, tip_r_of_heart, wall_thickness, cblocks, levels, spacing) {
|
||||
maze = mz_square_blocks(
|
||||
[1, 1],
|
||||
cblocks, levels, y_circular = true
|
||||
cblocks, levels, y_wrapping = true
|
||||
);
|
||||
|
||||
translate([0, 0, wall_thickness])
|
||||
|
@@ -108,7 +108,7 @@ module heart_maze(maze, radius, cblocks, levels, thickness = 1) {
|
||||
|
||||
maze = mz_square_blocks(
|
||||
[1, 1],
|
||||
cblocks, levels, y_circular = true
|
||||
cblocks, levels, y_wrapping = true
|
||||
);
|
||||
|
||||
intersection() {
|
||||
|
@@ -17,7 +17,7 @@ a_step = 360 / leng;
|
||||
blocks = mz_square_blocks(
|
||||
[1, 1],
|
||||
rows, columns,
|
||||
y_circular = true
|
||||
y_wrapping = true
|
||||
);
|
||||
|
||||
walls = mz_square_walls(blocks, rows, columns, block_width, bottom_border = false);
|
||||
|
@@ -51,7 +51,7 @@ module regular_polygon_maze(radius, cblocks, levels, thickness = 1, sides) {
|
||||
|
||||
maze = mz_square_blocks(
|
||||
[1, 1],
|
||||
cblocks, levels, y_circular = true
|
||||
cblocks, levels, y_wrapping = true
|
||||
);
|
||||
|
||||
difference() {
|
||||
|
@@ -54,7 +54,7 @@ module sphere_maze() {
|
||||
blocks = mz_square_blocks(
|
||||
[1, 1],
|
||||
rows, columns,
|
||||
y_circular = true
|
||||
y_wrapping = true
|
||||
);
|
||||
|
||||
p_offset = [block_width * rows, pole_offset, 0];
|
||||
|
@@ -17,7 +17,7 @@ a_step = 360 / leng;
|
||||
blocks = mz_square_blocks(
|
||||
[1, 1],
|
||||
rows, columns,
|
||||
x_circular = true, y_circular = true
|
||||
x_wrapping = true, y_wrapping = true
|
||||
);
|
||||
|
||||
walls = mz_square_walls(blocks, rows, columns, block_width, left_border = false, bottom_border = false);
|
||||
|
Reference in New Issue
Block a user