Skip to content

Instantly share code, notes, and snippets.

@mythagel
Created May 17, 2016 09:27
Show Gist options
  • Save mythagel/83b15aa6962f3bdfd30f37ae7a8f17ac to your computer and use it in GitHub Desktop.
Save mythagel/83b15aa6962f3bdfd30f37ae7a8f17ac to your computer and use it in GitHub Desktop.
tailstock die holder
module thread_die() {
cylinder(h=6, r=20/2);
}
$fn=32;
difference () {
cylinder(h=12, r=24/2);
translate([0,0,(12-6)+0.1]) thread_die();
translate([0,0,-0.5]) cylinder(h=12+1, r=12/2);
translate([5,0,12/2 + 6/2]) rotate([0,90,0]) cylinder(h=11, r=4/2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment