Created
February 10, 2022 05:22
-
-
Save lanrat/c789465bb8bba60cf8a13dcbe865292b to your computer and use it in GitHub Desktop.
Conformal coating brush cap holder
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 = 100; | |
cap_d = 27; | |
cap_h = 2; | |
cone_h = 15; | |
cone_base = 4.6; | |
cone_tip = 3.8; | |
union() { | |
cylinder(h=cap_h, d=cap_d); // cap | |
cylinder(h=cone_h, d1=cone_base, d2=cone_tip); // brush mount | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment