summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-01-02 15:13:07 +0100
committerxengineering <me@xengineering.eu>2024-01-02 15:13:07 +0100
commit3cae9130dfd27f5a18938afd19a8ab91202ea75f (patch)
treead5db40a43629c588c9bc031dd0a7ae7e352deb2
parent574327117fd0ba4c9a4bf1a729df89f11a73829e (diff)
downloadsoundbox-3cae9130dfd27f5a18938afd19a8ab91202ea75f.tar
soundbox-3cae9130dfd27f5a18938afd19a8ab91202ea75f.tar.zst
soundbox-3cae9130dfd27f5a18938afd19a8ab91202ea75f.zip
mech: pcb_case: Fix bug in tolerance_tests.scad
Without the bolt_ds_tol the drilling is too tight to be used for tolerance testing without drilling manually.
-rw-r--r--mech/pcb_case/tolerance_tests.scad2
1 files changed, 1 insertions, 1 deletions
diff --git a/mech/pcb_case/tolerance_tests.scad b/mech/pcb_case/tolerance_tests.scad
index 93c13f4..536c00b 100644
--- a/mech/pcb_case/tolerance_tests.scad
+++ b/mech/pcb_case/tolerance_tests.scad
@@ -34,7 +34,7 @@ module nut_drilling() {
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);
+ cylinder(d=bolt_ds+bolt_ds_tol,h=2*nut_h,$fn=50);
translate([0,0,nut_h])
cylinder(d=tol+nut_d,h=nut_h,$fn=50);
}