summaryrefslogtreecommitdiff
path: root/mech/pcb_case/nut_tolerance_test.scad
blob: e1df2b4ba1457ccc17c0b67da2e3d2c13822f4c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
include <nut.scad>
include <bolt.scad>

module nut_tolerance_test() {
	steps = 3;
	step_width = 0.1;

	for(i = [-steps : steps]) {
		tol = nut_d_tol + i * step_width;
		echo(tol=tol);
		translate([i*5*nut_d,0,0])
			difference() {
				cube([5*nut_d, 5*nut_d, 2*nut_h]);
				translate([2.5*nut_d,2.5*nut_d,0]) {
					union() {
						cylinder(d=bolt_ds,h=2*nut_h,$fn=50);
						translate([0,0,nut_h])
							cylinder(d=tol+nut_d,h=nut_h,$fn=50);
					}
				}
			}
	}
}

nut_tolerance_test();