-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path014_Mod3_Top_BackTrack.scad
79 lines (63 loc) · 1.55 KB
/
014_Mod3_Top_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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// chimney piece
difference() {
union() {
// top harness
translate([0,72,32])
cube([4,40,24]);
// angled piece
translate([0,72,42])
rotate([0,99.96,0])
cube([4,40,37.56]);
// bottom of angled piece
translate([0,72,32])
cube([34,40,4]);
translate([0,72,35])
cube([15,40,3.5]);
// middle part
translate([33,72,-83])
cube([4,40,118.5]);
// bottom harness
translate([0,72,-136])
cube([4,40,24]);
translate([0,72,-112])
rotate([0,47,0])
cube([4,40,47]);
}
// top holes left and right
translate([-4,76,36])
rotate([0,90,0])
cylinder(r=2.15,60, $fn=30);
translate([-4,108,36])
rotate([0,90,0])
cylinder(r=2.15,60, $fn=30);
// holes for attaching guard rail
// top left
translate([-4,76,-12])
rotate([0,90,0])
cylinder(r=2.15,90, $fn=30);
// top right
translate([-4,108,-12])
rotate([0,90,0])
cylinder(r=2.15,90, $fn=30);
// 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);
// 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 back
translate([-10,0,0])
cube([10,150,90]);
// clean up front slightly
translate([37,60,-85])
cube([5,60,6]);
}