1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-29 20:08:21 +01:00
dotSCAD/examples/hollow_out/hollow_out_torus.scad
2021-02-24 14:33:57 +08:00

22 lines
513 B
OpenSCAD

use <hull_polyline3d.scad>;
use <ptf/ptf_torus.scad>;
use <hollow_out_square.scad>;
width = 5;
columns = 10;
rows = 30;
radius = 30;
line_diameter = 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, line_diameter, $fn = 4);
}
color("black")
rotate_extrude($fn = 36)
translate([radius * 1.5, 0, 0])
circle(radius / 2);