-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbraun_series_adapter.scad
62 lines (45 loc) · 1.05 KB
/
braun_series_adapter.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
62
//width of haircutter
w = 37.4;
//holder height
hh = 2;
//holder width
hw = 3;
l = 24.5;
//holder pin length
hpl = 1.5;
//holder pin depth
hpd = 3;
phi = 37;
cube([hw,l,hh]);
translate([hw,0,0]) {
linear_extrude(hh) polygon([[0,0],[0,5],[hpd,5]]);
//translate([0,5+hpl,0]) cube([hpd,28.5,hh]);
}
translate([w+hw,0,0]) cube([hw,l,hh]);
translate([w+hw,0,0]){
linear_extrude(hh) polygon([[0,0],[0,5],[-hpd,5]]);
//translate([-hpd,5+hpl,0]) cube([hpd,28.5,hh]);
}
//width of hair glider
ww = 1;
//number of hair glider
num = 8;
dist = (w+2*hw-ww) / num;
h = 22;
difference() {
translate([0,l-hw,0]) rotate([-phi,0,0]) {
translate([0,0,0]) cube([w+2*hw,hw,h*0.5]);
difference() {
for(i = [0:num]) {
translate([i*dist,0,0])cube([ww,hw,h]);
}
translate([0,hw/2,h-hw/2 ]) {
difference() {
translate([0,0,0])cube([w+2*hw,hw/2,hw/2]);
rotate([0,90,0]) cylinder(w+2*hw,hw/2,hw/2,$fn=30);
}
}
}
}
translate([-500,-500,-200]) cube([1000,1000,200]);
}