Skip to content

Instantly share code, notes, and snippets.

@jmbr
Created August 23, 2021 05:51
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 jmbr/0af24ca598ed403b1c405ad50380e3f0 to your computer and use it in GitHub Desktop.
Save jmbr/0af24ca598ed403b1c405ad50380e3f0 to your computer and use it in GitHub Desktop.
Holder for needle-tip plastic bottles
//$fn = 90;
diameter = 30.5;
spacing = 2;
width = 4 * spacing + 3 * diameter;
depth = 2 * spacing + diameter;
height = 20 + spacing;
difference() {
scale([0.94, 0.85, 1])
minkowski() {
cube([width, depth, height], center=true);
cylinder(h=0.1, d=5);
}
translate([0, 0, spacing])
cylinder(h=height, d=diameter, center=true);
translate([-(spacing + diameter), 0, spacing])
cylinder(h=height, d=diameter, center=true);
translate([+(spacing + diameter), 0, spacing])
cylinder(h=height, d=diameter, center=true);
}
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