1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
bar_width = 4;
bar_height = 20;
clamp_thick = 5;
clamp_l1 = 10;
clamp_l2 = 50;
strut_height = bar_height;
strut_thick = 3;
angle = 30; // fake value; TODO
clamp_width = 2 * clamp_thick + bar_width;
clamp_height = bar_height + clamp_thick;
module strut(num, r1, r2, h) {
a = 360 / num;
b = a - 90;
d = clamp_width/2;
linear_extrude(h) polygon([
[r1, d], [r2, d],
[cos(a)*r2 + cos(b)*d, sin(a)*r2 + sin(b)*d],
[cos(a)*r1 + cos(b)*d, sin(a)*r1 + sin(b)*d]]);
}
module clamp() {
l = clamp_l2 - clamp_l1;
difference() {
translate([clamp_l1, -clamp_width/2, 0])
cube([l, clamp_width, clamp_height]);
translate([0, -bar_width/2, clamp_thick + clamp_l2 * sin(angle)])
rotate([0, angle, 0])
cube([2*l, bar_width, 2*bar_height]);
}
}
module con(num) {
for (i = [0:num-1])
rotate(i*360/num) {
clamp();
strut(num, clamp_l1, clamp_l1 + strut_thick, strut_height);
strut(num, clamp_l2, clamp_l2 - strut_height, strut_thick);
strut(num, clamp_l2, clamp_l2 - strut_thick, strut_height);
}
}
con(3);
|