-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path046_Mod6_Left_BackTrack.scad
60 lines (49 loc) · 1.21 KB
/
046_Mod6_Left_BackTrack.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
// back track for left entry bottom tube
// color ("gray")
difference() {
union() {
// top harness
translate([0,72,-36])
cube([4,40,16]);
translate([36,72,-55])
rotate([0,-62.5,0])
cube([4,40,43]);
// middle part
translate([33,72,-83])
cube([4,40,32]);
// bottom harness
translate([0,72,-136])
cube([4,40,24]);
translate([0,72,-112])
rotate([0,47,0])
cube([4,40,47]);
}
// bottom left
translate([-4,76,-60])
rotate([0,90,0])
cylinder(r=2.15,90, $fn=30);
// bottom right
translate([-4,108,-60])
rotate([0,90,0])
cylinder(r=2.15,90, $fn=30);
// top holes on harness left and right
translate([-4,76,-28])
rotate([0,90,0])
cylinder(r=2.15,60, $fn=30);
translate([-4,108,-28])
rotate([0,90,0])
cylinder(r=2.15,60, $fn=30);
// bottom holes on harness left and right
translate([-4,76,-124])
rotate([0,90,0])
cylinder(r=2.15,60, $fn=30);
translate([-4,108,-124])
rotate([0,90,0])
cylinder(r=2.15,60, $fn=30);
// clean up front slightly
translate([37,60,-85])
cube([5,60,60]);
// clean up back
translate([-10,60,-60])
cube([10,60,40]);
}