Last active
September 13, 2015 19:23
-
-
Save Stemer114/8c2954f6985fc3c74744 to your computer and use it in GitHub Desktop.
polyhole half
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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