1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-14 18:54:41 +02:00

render 2d first

This commit is contained in:
Justin Lin
2019-10-05 15:12:36 +08:00
parent e5e734c440
commit f64c0b6612

View File

@@ -43,9 +43,9 @@ module regular_polygon_maze(radius, cblocks, levels, thickness = 1, sides) {
starting_maze(cblocks, levels), starting_maze(cblocks, levels),
cblocks, levels, y_circular = true cblocks, levels, y_circular = true
); );
difference() { difference() {
union() { render() union() {
for(i = [1 : levels + 1]) { for(i = [1 : levels + 1]) {
ring_regular_polygon(r * i, thickness, sides); ring_regular_polygon(r * i, thickness, sides);
} }
@@ -64,7 +64,7 @@ module regular_polygon_maze(radius, cblocks, levels, thickness = 1, sides) {
} }
} }
union() { render() union() {
// maze entry // maze entry
// ring_regular_polygon_sector(r, arc_angle / 1.975 , thickness, r / 3, sides); // ring_regular_polygon_sector(r, arc_angle / 1.975 , thickness, r / 3, sides);