Added M8 keychain scad source file

pull/20/head
Carlos Garcia 2014-09-22 23:10:20 +02:00
parent e1beb2f171
commit 5addec6d75
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
l = 40;
d1 = 15;
d2 = d1*1.5;
d3 = 4;
d4 = 14.65;
difference() {
union() {
square([d1,l], center=true);
translate([0,l/2])
circle(r=d1/2, $fn=40);
translate([0,-l/2])
circle(r=d2/2, $fn=40);
}
translate([0,l/2])
circle(r=d3/2, $fn=40);
translate([0,-l/2-d4/3])
rotate(90) circle(r=d4/2, $fn=6);
translate([0,-l/2-d4*1.3])
rotate(90) circle(r=d4, $fn=6);
}