Skip to content

Instantly share code, notes, and snippets.

@jhitesma
Last active April 8, 2016 03:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhitesma/0afe5bbeb37e005f72d2d844c123c913 to your computer and use it in GitHub Desktop.
Save jhitesma/0afe5bbeb37e005f72d2d844c123c913 to your computer and use it in GitHub Desktop.
3d printed nut for 3 string cigar box guitar
$fa=.05;
$fs=.05;
difference() {
nut_base();
translate([0,0,1]) slots();
}
module slots() {
translate([10,0,3.9]) rotate ([90,0,0]) cylinder(20,.6,.6,true);
translate([0,0,4]) rotate ([90,0,0]) cylinder(20,0.7,0.7,true);
translate([-10,0,4.2]) rotate ([90,0,0]) cylinder(20,.9,.9,true);
}
module nut_base() {
union() {
translate([0,0,-1]) cube([38,6,6], true);
translate([0,-1.4,2]) cube([38,3.2,6], true);
translate([0,0,2]) rotate ([0,90,0]) cylinder (38,3,3, true);
//translate([0,0,-7]) cube([41,11,9], true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment