1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-24 21:41:33 +02:00
Files
dotSCAD/examples/hollow_out/hollow_out_torus.scad
2020-03-24 17:12:21 +08:00

22 lines
505 B
OpenSCAD

use <hull_polyline3d.scad>;
use <ptf/ptf_torus.scad>;
use <hollow_out_square.scad>;
width = 5;
columns = 10;
rows = 30;
radius = 30;
thickness = 2;
twist = 0;
lines = hollow_out_square([columns, rows], width);
for(line = lines) {
transformed = [for(pt = line) ptf_torus([columns * width, rows * width], pt, [radius, radius / 2], twist = twist)];
hull_polyline3d(transformed, thickness, $fn = 4);
}
color("black")
rotate_extrude($fn = 36)
translate([radius * 1.5, 0, 0])
circle(radius / 2);