summaryrefslogtreecommitdiff
path: root/mech/pcb_case/bolt.scad
blob: 0a2f8a0c8babd5c729dc2cf921fefc293ff3e34c (plain)
1
2
3
4
5
6
7
8
bolt_d = 3;
bolt_r = bolt_d / 2;

module bolt() {
	cylinder(d=bolt_d,h=5);  // TODO height is not considered at the moment
}

bolt();