From d5655c62a5016f89f3b7fc8f6c2f9db68479b261 Mon Sep 17 00:00:00 2001 From: xengineering Date: Mon, 1 Jan 2024 13:34:29 +0100 Subject: mech: pcb_case: Add panel size tolerance test This allows to check the tolerances for panel width and length. --- mech/pcb_case/panel_size_tolerance_test.scad | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 mech/pcb_case/panel_size_tolerance_test.scad (limited to 'mech/pcb_case') diff --git a/mech/pcb_case/panel_size_tolerance_test.scad b/mech/pcb_case/panel_size_tolerance_test.scad new file mode 100644 index 0000000..8a0b20b --- /dev/null +++ b/mech/pcb_case/panel_size_tolerance_test.scad @@ -0,0 +1,26 @@ +use + +t = 2; +t_tol = 0.4; +current_tol = 0.8; +height = 3*t; + +module panel_size_tolerance_test() { + steps = 3; + step_width = 0.2; + + for(i = [-steps : steps]) { + tol = current_tol + i * step_width; + echo(tol=tol); + translate([i*3*t,0,0]) + difference() { + cube([3*t, 8*t, height]); + translate([t, t-tol/2, t]) { + rounded_cube([t, 6*t+tol, 6*t+tol], t); + } + } + } +} + +panel_size_tolerance_test(); +translate([0, 9*t, 0]) rotate([0, -90, 0]) rounded_cube([t, 6*t, 6*t], t); -- cgit v1.2.3-70-g09d2