-
Notifications
You must be signed in to change notification settings - Fork 97
/
jaws.scad
30 lines (28 loc) · 1.02 KB
/
jaws.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
h = 7;
r = h/2 / cos(30);
module jaws() {
difference() {
union() {
intersection () {
rotate([90, 0, 0]) cylinder(r=5, h=14, center=true, $fn=24);
translate([-4, 0, 0]) cube([10, 14, h], center=true);
}
intersection() {
translate([10, 0, 0]) cube([26, 14, h], center=true);
translate([10, 0, 0]) rotate([0, 90, 0]) rotate([0, 0, 30])
cylinder(r1=10, r2=r, h=26, center=true, $fn=6);
}
}
translate([-1.5, 0, 0]) cube([10, 8.4, 10], center=true);
translate([3.5, 0, 0]) rotate([0, 0, 30])
cylinder(r=4.2, h=10, center=true, $fn=6);
translate([4, 0, 4]) rotate([0, 45, 0])
rotate([0, 0, 30]) cylinder(r=4.2, h=8, center=true, $fn=6);
translate([4, 0, -4]) rotate([0, -45, 0])
rotate([0, 0, 30]) cylinder(r=4.2, h=8, center=true, $fn=6);
rotate([90, 0, 0]) cylinder(r=1.55, h=40, center=true, $fn=12);
translate([19, 0, 0]) rotate([0, 90, 0])
cylinder(r=2.8, h=20, center=true, $fn=12);
}
}
translate([0, 0, h/2]) jaws();