-
Notifications
You must be signed in to change notification settings - Fork 0
/
BiteBullets.scad
102 lines (80 loc) · 1.85 KB
/
BiteBullets.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
$fn=50;
module grooveTool() {
difference() {
linear_extrude(height=1)
minkowski(){
square(size=10./3, center=true);
circle(r=10./3, center=true);
}
linear_extrude(height=1)
minkowski(){
square(size=9./3, center=true);
circle(r=9./3, center=true);
}
}
}
*translate([0,0,10])
grooveTool();
module widowBite() {
difference(){
union(){
linear_extrude(height=8, scale=0.65)
minkowski(){
square(size=10./3, center=true);
circle(r=10./3, center=true);
}
translate([0,0,-50])
linear_extrude(height=50)
minkowski(){
square(size=10./3, center=true);
circle(r=10./3, center=true);
}
}
translate([0,0,7.6])
cylinder(r=2.5, h=0.6);
translate([0,0,-50])
cylinder(r=2, h=70);
translate([0,0,-2])
grooveTool();
translate([0,0, -7])
rotate([90,0,0])
cylinder(d=3.5, h=12, center=true);
translate([2.5,0,-7])
minkowski() {
cube([5,3,3], center=true);
sphere(r=1);
}
translate([7.5,0,-7])
minkowski() {
cube([5,3.5,3.5], center=true);
sphere(r=1);
}
translate([0,0, -40])
rotate([90,0,0])
cylinder(d=3.5, h=12, center=true);
translate([2.5,0,-40])
minkowski() {
cube([5,3,3], center=true);
sphere(r=1);
}
translate([7.5,0,-40])
minkowski() {
cube([5,3.5,3.5], center=true);
sphere(r=1);
}
translate([0,0,-47])
grooveTool();
translate([0,0,-50])
cylinder(r=2.5, h=0.6);
}
}
for(i = [0:11])
{
translate([i*(10+1),0,10./2])
rotate([-90,-90,0])
widowBite();
}
translate([-10, -20,-0.25])
cube([180, 15, 0.5]);
translate([-10, -45,-0.25])
cube([180, 15, 0.5]);