Skip to content

Instantly share code, notes, and snippets.

@TheCase
Created May 3, 2015 21:37
Show Gist options
  • Save TheCase/71b577126f067c083131 to your computer and use it in GitHub Desktop.
Save TheCase/71b577126f067c083131 to your computer and use it in GitHub Desktop.
cur = 1h;
translate([0,0,1h]) cylinder(d1=1d, d2=8.5, h=1Bh, $fn=40); //1B
cur = cur + 1Bh
translate([0,0,cur]) cylinder(d=2d, h=2h, $fn=30); //2
cur = cur + 2h;
translate([0,0,cur]) cylinder(d=3d, h=3h, $fn=15); //3
cur = cur + 3h
translate([0,0,cur]) cylinder(d=4d, h=4h, $fn=25); //4
//etc...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment