From 2cf9a358ff9329173255422e12b076d3cb6ac09b Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 17 Oct 2023 22:49:13 +0100 Subject: [PATCH] digispark-with-cable: wip progress Signed-off-by: Ian Jackson --- digispark-with-cable.scad | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/digispark-with-cable.scad b/digispark-with-cable.scad index c29b2fa..1f7034d 100644 --- a/digispark-with-cable.scad +++ b/digispark-with-cable.scad @@ -93,12 +93,16 @@ module BothSides(){ module StrapCutouts(y_c, z_top, top_sz_x){ for (z = [ bottom_base_z, z_top ]) { BothSides(){ - translate([ -total_side_wall_x, y_c, z_top ]) { + translate([ -total_side_wall_x, y_c, z_top ]) cube([ top_sz_x*2, strap_w, strap_cutout_z*2 ], center=true); - } + translate([ -total_side_wall_x, y_c, bottom_base_z ]) + cube([ side_wall_th * 0.75, + strap_w, + strap_cutout_z*2 ], + center=true); } } } @@ -228,6 +232,7 @@ module Bottom(){ ////toplevel CoverRegistrations(); cube([ 1, fit_gap_y*2, fit_gap_z*2 ], center=true); } + CoverStrapCutouts(); } } -- 2.30.2