Skip to content

Instantly share code, notes, and snippets.

@Stemer114
Last active September 13, 2015 19:23
Show Gist options
  • Save Stemer114/8c2954f6985fc3c74744 to your computer and use it in GitHub Desktop.
Save Stemer114/8c2954f6985fc3c74744 to your computer and use it in GitHub Desktop.
polyhole half
/* this module makes use of the polyhole library function by nophead (MCAD library)
* MCAD Library - Polyholes Copyright 2011 Nophead (of RepRap fame)
* It is licensed under the terms of Creative Commons Attribution 3.0 Unported.
* https://github.com/SolidCode/MCAD/blob/master/polyholes.scad
*/
module polyhole_half(
h=10,
d=10
)
{
difference()
{
polyhole(h=h, d=d);
translate([-d, -2*d, -de]) cube([2*d, 2*d, h+2*de]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment