mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-11 01:04:07 +02:00
update doc
This commit is contained in:
@@ -25,7 +25,7 @@ It's a helper for getting data from a square-maze cell.
|
|||||||
for(cell = cells) {
|
for(cell = cells) {
|
||||||
x = mz_square_get(cell, "x");
|
x = mz_square_get(cell, "x");
|
||||||
y = mz_square_get(cell, "y");
|
y = mz_square_get(cell, "y");
|
||||||
type = mz_square_get(cell, "t");;
|
type = mz_square_get(cell, "t");
|
||||||
|
|
||||||
translate([x, y] * cell_width) {
|
translate([x, y] * cell_width) {
|
||||||
if(type == "TOP_WALL" || type == "TOP_RIGHT_WALL") {
|
if(type == "TOP_WALL" || type == "TOP_RIGHT_WALL") {
|
||||||
@@ -38,7 +38,7 @@ It's a helper for getting data from a square-maze cell.
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
line2d([0, 0], [cell_width * rows, 0], wall_thickness);
|
line2d([0, 0], [cell_width * columns, 0], wall_thickness);
|
||||||
line2d([0, 0], [0, cell_width * columns], wall_thickness);
|
line2d([0, 0], [0, cell_width * rows], wall_thickness);
|
||||||
|
|
||||||

|

|
Reference in New Issue
Block a user