summaryrefslogtreecommitdiff
path: root/mech/pcb_case/panel_size_tolerance_test.scad
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-01-01 14:09:52 +0100
committerxengineering <me@xengineering.eu>2024-01-02 14:24:58 +0100
commit710206dfcaf4ddff2983797cf7b7fc19377cebec (patch)
treedf10156562aad760ec594c68c81a8037da229a5b /mech/pcb_case/panel_size_tolerance_test.scad
parentd5655c62a5016f89f3b7fc8f6c2f9db68479b261 (diff)
downloadsoundbox-710206dfcaf4ddff2983797cf7b7fc19377cebec.tar
soundbox-710206dfcaf4ddff2983797cf7b7fc19377cebec.tar.zst
soundbox-710206dfcaf4ddff2983797cf7b7fc19377cebec.zip
mech: pcb_case: Move tolerance tests to one file
This makes the file structure and module naming simpler and allows to easily print all tolerance tests at once. This is helpful to validate a specific printer setup.
Diffstat (limited to 'mech/pcb_case/panel_size_tolerance_test.scad')
-rw-r--r--mech/pcb_case/panel_size_tolerance_test.scad26
1 files changed, 0 insertions, 26 deletions
diff --git a/mech/pcb_case/panel_size_tolerance_test.scad b/mech/pcb_case/panel_size_tolerance_test.scad
deleted file mode 100644
index 8a0b20b..0000000
--- a/mech/pcb_case/panel_size_tolerance_test.scad
+++ /dev/null
@@ -1,26 +0,0 @@
-use <rounded_cube.scad>
-
-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);