1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-16 19:54:29 +02:00
This commit is contained in:
Justin Lin
2020-02-13 14:13:11 +08:00
parent 32ff45758c
commit ef38ee2186

View File

@@ -23,6 +23,6 @@ walls = maze_walls(blocks, rows, columns, block_width, bottom_border = false);
size = [columns * block_width, rows * block_width];
for(wall_pts = walls) {
z_rotated = [for(pt = wall_pts) tf_ring(size, pt, radius, 360, angle)];
hull_polyline3d(z_rotated, wall_thickness);
transformed = [for(pt = wall_pts) tf_ring(size, pt, radius, 360, angle)];
hull_polyline3d(transformed, wall_thickness);
}