Skip to content

Instantly share code, notes, and snippets.

@fincham
Created November 6, 2016 23:10
Show Gist options
  • Save fincham/52561e3951dd9242508a2512fe349ac1 to your computer and use it in GitHub Desktop.
Save fincham/52561e3951dd9242508a2512fe349ac1 to your computer and use it in GitHub Desktop.
$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