1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 14:18:13 +01:00
dotSCAD/examples/maze/stereographic_square_maze.scad
2022-06-06 13:11:46 +08:00

29 lines
818 B
OpenSCAD

use <stereographic_extrude.scad>
use <square_maze.scad>
maze_rows = 10;
cell_width = 40;
wall_thickness = 20;
fn = 36;
shadow = "YES"; // [YES, NO]
wall_height = 2;
module stereographic_projection_maze2(maze_rows, cell_width, wall_thickness, fn, wall_height, shadow) {
length = cell_width * maze_rows + wall_thickness;
module maze() {
translate([-cell_width * maze_rows / 2, -cell_width * maze_rows / 2, 0])
square_maze(maze_rows, cell_width, wall_thickness);
}
stereographic_extrude(shadow_side_leng = length, $fn = fn, convexity = 10)
maze();
if(shadow == "YES") {
color("black")
linear_extrude(wall_height)
maze();
}
}
stereographic_projection_maze2(maze_rows, cell_width, wall_thickness, fn, wall_height, shadow);