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,7 +1,7 @@
use <hull_polyline3d.scad>;
use <experimental/mz_blocks.scad>;
use <experimental/mz_walls.scad>;
use <experimental/tf_y_twist.scad>;
use <experimental/ptf_y_twist.scad>;
rows = 16;
columns = 8;
@@ -19,6 +19,6 @@ walls = mz_walls(blocks, rows, columns, block_width);
size = [columns * block_width, rows * block_width];
for(wall_pts = walls) {
transformed = [for(pt = wall_pts) tf_y_twist(size, pt, angle)];
transformed = [for(pt = wall_pts) ptf_y_twist(size, pt, angle)];
hull_polyline3d(transformed, wall_thickness);
}