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

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