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

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

nut();