summaryrefslogtreecommitdiff
path: root/mech/pcb_case/nut.scad
blob: 0768b6a2d54071c9bca7689747835e9201dc345e (plain)
1
2
3
4
5
6
7
nut_h = 3;
nut_d = 4.15;
nut_d_tol = 0.2;

module nut() {
	cylinder(d=nut_d,h=nut_h);
}