Skip to content

Instantly share code, notes, and snippets.

@Stemer114
Created July 8, 2015 21:43
Show Gist options
  • Save Stemer114/658e4e7ab72ed0b42cc2 to your computer and use it in GitHub Desktop.
Save Stemer114/658e4e7ab72ed0b42cc2 to your computer and use it in GitHub Desktop.
slot hole
module slot_hole(
width = 5, //width/dia at ends
length = 20, //length
thickness = 5 //thickness
)
{
hull() {
translate([-length/2+width/2, 0, 0]) polyhole(h=thickness, d=width);
translate([length/2-width/2, 0, 0]) polyhole(h=thickness, d=width);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment