Created
November 6, 2016 23:10
-
-
Save fincham/52561e3951dd9242508a2512fe349ac1 to your computer and use it in GitHub Desktop.
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
$fn = 50; | |
module foot() { | |
cylinder(r=3,h=1); | |
hull() { | |
translate([0, 0, 0.99]) | |
cylinder(r=2.8, h=0.01); | |
translate([0, 0, 5]) | |
sphere(r=1); | |
} | |
} | |
translate([0, 0, 1]) | |
for (a=[0:6]) { | |
rotate([0, 0, (360/6) * a]) | |
translate([43, 0, 0]) | |
foot(); | |
} | |
difference() { | |
cylinder(r=46.5, h=1, $fn=12); | |
translate([0, 0, -1]) | |
cylinder(r=40, h=3, $fn=12); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment