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
|
fn = 50;
difference(){
union(){
rotate([0,-90,0])
translate([12,0,53.5]){
include<Maus.scad>;
};
translate([-32.5,0,0])
hull(){
translate([1.5,0,0]){
cylinder(h = 16, r = 4.5, $fn = fn);
}
translate([-1.5,0,0]){
cylinder(h = 16, r = 4.5, $fn = fn);
}
}
translate([32.5,0,0])
hull(){
translate([1.5,0,0]){
cylinder(h = 16, r = 4.5, $fn = fn);
}
translate([-1.5,0,0]){
cylinder(h = 16, r = 4.5, $fn = fn);
}
}
intersection(){
hull(){
translate([-34,0,5])
cylinder(h = 100, r = 4.5, $fn = fn);
translate([34,0,5])
cylinder(h = 100, r = 4.5, $fn = fn);
};
difference(){
translate([0,0,-70])
sphere(r = 95, $fn = 5*fn);
translate([0,0,-70])
sphere(r = 90, $fn = 5*fn);
};
};
};
translate([-32.5,0,-2]){
linear_extrude(height = 18, center = false, convexity = 10, twist = -9*360, $fn = fn) {
translate([.25,0,0])
circle(r = 1.75);
};
};
translate([32.5,0,-2]){
linear_extrude(height = 18, center = false, convexity = 10, twist = -9*360, $fn = fn) {
translate([.25,0,0])
circle(r = 1.75);
};
};
};
|