summaryrefslogtreecommitdiff
path: root/case/pcb_case/bolt.scad
blob: 4c26c304c9594079810352fc264d2e2c4cd02de6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// bolt based on ISO 4762 (https://www.fasteners.eu/us/standards/ISO/4762)
bolt_k = 3;
bolt_l = 10;
bolt_dk = 5.5;
bolt_ds = 3;
bolt_ds_tol = 0.45;

module bolt() {
	union() {
		cylinder(d=bolt_ds, h=bolt_l, $fn=30);
		translate([0, 0, -bolt_ds]) cylinder(d=bolt_dk, h=bolt_ds, $fn=30);
	}
}