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.

standoff.scad 208B

123456789101112
  1. height = 25;
  2. outer_diameter = 5;
  3. inner_diameter = 2;
  4. $fn = 6;
  5. difference() {
  6. cylinder(d = outer_diameter, h = height);
  7. translate([0, 0, -1])
  8. cylinder(d = inner_diameter, h = height + 2);
  9. }