Skip to content

Instantly share code, notes, and snippets.

@chuckis
Created May 29, 2016 18:06
Show Gist options
  • Save chuckis/9a22c325d22680d14a6b3f8de59c5167 to your computer and use it in GitHub Desktop.
Save chuckis/9a22c325d22680d14a6b3f8de59c5167 to your computer and use it in GitHub Desktop.
part of lad-pad
//stavka.scad
module stavka() {
difference (){
translate ([0, 0, -10]) cube ([20, 20, 20], center=true);
union (){
for (rot = [[0, 90, 0], [90, 0, 0], [0, 0, 90]]){ rotate(rot) cylinder(r= 6.5, h=50, fa = 20, center = true);}
}
}
}
scale([0.1, 0.1, 0.1]) stavka();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment