diff options
Diffstat (limited to 'mech/panel_front.scad')
-rw-r--r-- | mech/panel_front.scad | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mech/panel_front.scad b/mech/panel_front.scad index f430789..da06927 100644 --- a/mech/panel_front.scad +++ b/mech/panel_front.scad @@ -18,7 +18,7 @@ module panel_front(pcb_dim, margins, t) { micro_usb_hole(pcb_dim, margins, t, v[1]); } } - for(y = [cinch_max_y-cinch_d/2, cinch_max_y-cinch_delta_y+cinch_d/2]) { + for(y = [cinch_min_y+0.5*cinch_d, cinch_min_y+1.5*cinch_d+cinch_delta_y]) { translate([0, y, 0]) { cinch_hole(pcb_dim, margins, t); } @@ -56,9 +56,9 @@ module micro_usb_hole(pcb_dim, margins, t, dx) { } } -cinch_d = 8.8; -cinch_delta_y = 24.5; -cinch_max_y = 70.4; +cinch_d = 8.3; +cinch_min_y = 45; +cinch_delta_y = 8.2; cinch_max_z = 34.25; module cinch_hole(pcb_dim, margins, t) { case_dim = dim_pcb_to_case(pcb_dim, margins, t); |