plate of corners for the dodecahedron

This commit is contained in:
Trammell Hudson 2015-01-26 15:25:41 -05:00
parent 105fe39dad
commit 81b4d566cd
1 changed files with 14 additions and 0 deletions

View File

@ -6,9 +6,23 @@ module connector(len) {
}
%translate([0,0,0]) cylinder(r=thick/2, h=len*0.48);
}
module corner()
{
translate([0,0,5.9]) rotate([0,180,0])
{
sphere(r=5.900000, $fa=60); // 1 0x7fb9f8403fb0
rotate([0,90.000000,71.999908]) connector(44.902824);
rotate([0,148.282623,-161.999924]) connector(44.902748);
rotate([0,90.000000,-35.999943]) connector(44.902859);
}
}
for(x=[0:3])
{
for(y=[0:4])
{
translate([x*18,y*35,0]) rotate([0,0,20]) corner();
}
}