diff options
author | xengineering <me@xengineering.eu> | 2024-01-01 14:09:52 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-02 14:24:58 +0100 |
commit | 710206dfcaf4ddff2983797cf7b7fc19377cebec (patch) | |
tree | df10156562aad760ec594c68c81a8037da229a5b /mech/pcb_case/bolt_tolerance_test.scad | |
parent | d5655c62a5016f89f3b7fc8f6c2f9db68479b261 (diff) | |
download | soundbox-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/bolt_tolerance_test.scad')
-rw-r--r-- | mech/pcb_case/bolt_tolerance_test.scad | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/mech/pcb_case/bolt_tolerance_test.scad b/mech/pcb_case/bolt_tolerance_test.scad deleted file mode 100644 index b658183..0000000 --- a/mech/pcb_case/bolt_tolerance_test.scad +++ /dev/null @@ -1,21 +0,0 @@ -include <bolt.scad> - -module bolt_tolerance_test() { - steps = 3; - step_width = 0.1; - height = 3; - - for(i = [-steps : steps]) { - tol = bolt_ds_tol + i * step_width; - echo(tol=tol); - translate([i*5*bolt_ds,0,0]) - difference() { - cube([5*bolt_ds, 5*bolt_ds, height]); - translate([2.5*bolt_ds,2.5*bolt_ds,0]) { - cylinder(d=bolt_ds+tol,h=height,$fn=50); - } - } - } -} - -bolt_tolerance_test(); |