1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-20 05:21:38 +02:00
This commit is contained in:
Justin Lin
2022-04-01 13:58:01 +08:00
parent bb9c630e20
commit 356966b8f6
4 changed files with 71 additions and 71 deletions

View File

@@ -11,18 +11,18 @@ twisted_ring(
); );
translate([95, 0]) translate([95, 0])
twisted_ring( twisted_ring(
[for(p = shape_liquid_splitting(radius = 5, centre_dist = 25)) [p[0], p[1] + 10]], [for(p = shape_liquid_splitting(radius = 5, centre_dist = 25)) [p[0], p[1] + 10]],
r = 25, r = 25,
shape_turns = 3 shape_turns = 3
); );
translate([-110, 0]) translate([-110, 0])
twisted_ring( twisted_ring(
[[17.5, 10], [17.5, 20], [12.5, 20], [12.5, 15], [7.5, 15], [7.5, 20], [2.5, 20], [2.5, 15], [-2.5, 15], [-2.5, 20], [-7.5, 20], [-7.5, 15], [-12.5, 15], [-12.5, 20], [-17.5, 20], [-17.5, 10]], [[17.5, 10], [17.5, 20], [12.5, 20], [12.5, 15], [7.5, 15], [7.5, 20], [2.5, 20], [2.5, 15], [-2.5, 15], [-2.5, 20], [-7.5, 20], [-7.5, 15], [-12.5, 15], [-12.5, 20], [-17.5, 20], [-17.5, 10]],
r = 30, r = 30,
shape_turns = 3 shape_turns = 3
); );
module twisted_ring(shape, r, shape_turns) { module twisted_ring(shape, r, shape_turns) {
t = 360 * shape_turns; t = 360 * shape_turns;