Created
August 23, 2021 05:51
-
-
Save jmbr/0af24ca598ed403b1c405ad50380e3f0 to your computer and use it in GitHub Desktop.
Holder for needle-tip plastic bottles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//$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); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment