summaryrefslogtreecommitdiff
path: root/mech/pcb_case/nut.scad
blob: b7916d31ed72ebce72c4926857712a9264116452 (plain)
1
2
3
4
5
6
7
8
nut_h = 3;
nut_d = 4.15;
nut_r = nut_d / 2;
nut_d_tol = 0.5;

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