Skip to content

Instantly share code, notes, and snippets.

@haruo31
Created November 19, 2020 09:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haruo31/56bb83ffbc0b4e33679bfd68aa3a6926 to your computer and use it in GitHub Desktop.
Save haruo31/56bb83ffbc0b4e33679bfd68aa3a6926 to your computer and use it in GitHub Desktop.
openscad sleeve model
$fs = 0.1;
$fa = 3;
module sleeve(d=3, h=1, t=1) {
difference() {
cylinder(d=d, h);
cylinder(d=d-t*2, h);
}
}
sleeve(8, 10);
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment