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/nut_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/nut_tolerance_test.scad')
-rw-r--r-- | mech/pcb_case/nut_tolerance_test.scad | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/mech/pcb_case/nut_tolerance_test.scad b/mech/pcb_case/nut_tolerance_test.scad deleted file mode 100644 index e1df2b4..0000000 --- a/mech/pcb_case/nut_tolerance_test.scad +++ /dev/null @@ -1,25 +0,0 @@ -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(); |