Created
January 15, 2013 14:08
-
-
Save KitWallace/4538885 to your computer and use it in GitHub Desktop.
Dodecahedron by intersection
This file contains hidden or 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
dodecahedron by intersectionmodule box() { | |
cube([2,2,1], center = true); | |
} | |
module dodecahedron() { | |
dihedral = 116.565; | |
n=5; | |
intersection(){ | |
box(); | |
intersection_for(i=[1:n]) { | |
rotate([dihedral, 0, 360 / n * i]) box(); | |
} | |
} | |
} | |
scale(10) dodecahedron(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment