Last active
February 1, 2023 22:07
-
-
Save Stemer114/324c382a528d10b43759 to your computer and use it in GitHub Desktop.
openscad nut trap module
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
//nut trap | |
//default values are for M3 nut | |
//if you use this module as a nut trap cutout, you need to add +de (ie 0.1mm or similiar) to height | |
//in order to get non-manifold cutouts | |
module nut_trap ( | |
w = 5.5, | |
h = 3 | |
) | |
{ | |
cylinder(r = w / 2 / cos(180 / 6) + 0.05, h=h, $fn=6); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment