My self-made 3D-printable designs, mainly in OpenSCAD
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.

z-wobble.scad 296B

12345678910111213
  1. diameter_outer_min = 10;
  2. diameter_outer_max = 12;
  3. height = 10;
  4. diameter_inner_min = 2.8;
  5. diameter_inner_max = 2.8;
  6. $fn = 20;
  7. difference() {
  8. cylinder(d1 = diameter_outer_max, d2 = diameter_outer_min, h = height);
  9. cylinder(d = diameter_inner_max, d2 = diameter_inner_min, h = height);
  10. }