diff options
author | xengineering <me@xengineering.eu> | 2024-01-01 14:53:18 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-02 14:24:58 +0100 |
commit | 64f0f6fe7158ad4c35ca42fdbad985a60c07e8f7 (patch) | |
tree | 5b4f901226529362d85d99457b4acf7db1379fde | |
parent | 973cd7c4765b31f6d280ac8585287231bf62f343 (diff) | |
download | soundbox-64f0f6fe7158ad4c35ca42fdbad985a60c07e8f7.tar soundbox-64f0f6fe7158ad4c35ca42fdbad985a60c07e8f7.tar.zst soundbox-64f0f6fe7158ad4c35ca42fdbad985a60c07e8f7.zip |
mech: pcb_case: Fix tolerance_tests.scad
The width and height tolerance test was unusable because the thickness
tolerance was not added. Thus the test part did not fit inside the slot.
-rw-r--r-- | mech/pcb_case/tolerance_tests.scad | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mech/pcb_case/tolerance_tests.scad b/mech/pcb_case/tolerance_tests.scad index 43560f7..c15cf50 100644 --- a/mech/pcb_case/tolerance_tests.scad +++ b/mech/pcb_case/tolerance_tests.scad @@ -79,7 +79,7 @@ module panel_width_height() { difference() { cube([3*t, 8*t, height]); translate([t, t-tol/2, t]) { - rounded_cube([t, 6*t+tol, 6*t+tol], t); + rounded_cube([t+panel_dim_0_tol, 6*t+tol, 6*t+tol], t); } } } |