openSCAD models for 3d-printing
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
249 B

  1. difference() {
  2. difference() {
  3. cylinder(r1=4.2, r2=4.2, h=5, $fn=50);
  4. cylinder(r1=3, r2=3, h=5, $fn=50);
  5. }
  6. translate([-5,0,10]) {
  7. rotate([0,90,0]) {
  8. cylinder(r1=7, r2=7, h=10, $fn=50);
  9. }
  10. }
  11. }