-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquadcopter_feet.scad
61 lines (45 loc) · 907 Bytes
/
quadcopter_feet.scad
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
51
52
53
54
55
56
57
58
59
60
61
$fn = 50;
// height
h = 40;
// radius
r = 20;
// radius top
rt = 10;
// distance between holes
hd = 27;
// hole height
hh = 2;
// hole radius upper
hru = 3;
// hole radius bottom
hrb = 1.5;
// distance between holes
hd2 = 30;
// hole height
hh2 = 2;
// hole radius upper
hru2 = 3;
// hole radius bottom
hrb2 = 1.5;
difference() {
union(){
cylinder(h-rt,r,rt);
translate([0,0,h-rt]) sphere(rt);
}
translate([hd/2,0,0]) {
cylinder(h,hrb,hrb);
translate([0,0,hh])cylinder(h,hru,hru);
}
translate([-hd/2,0,0]) {
cylinder(h,hrb,hrb);
translate([0,0,hh])cylinder(h,hru,hru);
}
translate([0,hd2/2,0]) {
cylinder(h,hrb2,hrb2);
translate([0,0,hh2])cylinder(h,hru2,hru2);
}
translate([0,-hd2/2,0]) {
cylinder(h,hrb2,hrb2);
translate([0,0,hh2])cylinder(h,hru2,hru2);
}
}