Skip to content

Instantly share code, notes, and snippets.

@FFY00
Created October 9, 2021 17:42
Show Gist options
  • Select an option

  • Save FFY00/d52c659bfc987f8262a70fb7a3c396cd to your computer and use it in GitHub Desktop.

Select an option

Save FFY00/d52c659bfc987f8262a70fb7a3c396cd to your computer and use it in GitHub Desktop.
diameter_small = 3.3;
diameter_big = 4.2;
distance = 15.5;
border = 2;
thickness = 0.8;
$fn = 80;
difference() {
hull() {
cylinder(thickness, d=diameter_small + border);
translate([distance, 0, 0]) cylinder(thickness, d=diameter_big + border);
}
cylinder(thickness, d=diameter_small);
translate([distance, 0, 0]) cylinder(thickness, d=diameter_big);
}
Display the source blob
Display the rendered blob
Raw
Loading
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