1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-21 05:52:16 +02:00
This commit is contained in:
Justin Lin
2020-02-16 14:10:33 +08:00
parent 5f0e83cfc6
commit 77df23ae83

View File

@@ -1,7 +1,7 @@
use <hull_polyline3d.scad>; use <hull_polyline3d.scad>;
use <rotate_p.scad>;
use <square_maze.scad>;
use <matrix/m_rotation.scad>; use <matrix/m_rotation.scad>;
use <experimental/mz_blocks.scad>;
use <experimental/mz_walls.scad>;
use <experimental/tf_sphere.scad>; use <experimental/tf_sphere.scad>;
r = 10; r = 10;
@@ -13,16 +13,16 @@ pole_offset = block_width * 1.5;
module sphere_maze() { module sphere_maze() {
size = [rows * block_width, columns * block_width + pole_offset * 2]; size = [rows * block_width, columns * block_width + pole_offset * 2];
blocks = go_maze( blocks = mz_blocks(
1, 1, // starting point [1, 1],
starting_maze(rows, columns), rows, columns,
rows, columns, y_circular = true y_circular = true
); );
p_offset = [block_width * rows, pole_offset, 0]; p_offset = [block_width * rows, pole_offset, 0];
mr = m_rotation(90); mr = m_rotation(90);
walls = maze_walls(blocks, rows, columns, block_width, bottom_border = false); walls = mz_walls(blocks, rows, columns, block_width, bottom_border = false);
for(wall_pts = walls) { for(wall_pts = walls) {
rxpts = [ rxpts = [
for(p = wall_pts) for(p = wall_pts)