1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-31 02:10:28 +02:00
This commit is contained in:
Justin Lin
2020-02-24 10:10:51 +08:00
parent 3b14f473c8
commit 330d523736
18 changed files with 39 additions and 39 deletions

View File

@@ -1,5 +1,5 @@
use <hull_polyline3d.scad>;
use <experimental/tf_torus.scad>;
use <experimental/ptf_torus.scad>;
use <experimental/mz_blocks.scad>;
use <experimental/mz_walls.scad>;
@@ -24,7 +24,7 @@ walls = mz_walls(blocks, rows, columns, block_width, left_border = false, bottom
size = [columns * block_width, rows * block_width];
for(wall_pts = walls) {
transformed = [for(pt = wall_pts) tf_torus(size, pt, [radius, radius / 2], twist = twist)];
transformed = [for(pt = wall_pts) ptf_torus(size, pt, [radius, radius / 2], twist = twist)];
hull_polyline3d(transformed, wall_thickness, $fn = 4);
}