From: Ian Jackson Date: Wed, 15 Oct 2025 23:09:05 +0000 (+0100) Subject: toolbox-inserts: bits: new new fixings, shape fudge X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=323e53ee7dc4809d67f833ea362dbf5178464bc1;p=reprap-play.git toolbox-inserts: bits: new new fixings, shape fudge Signed-off-by: Ian Jackson --- diff --git a/toolbox-inserts.scad b/toolbox-inserts.scad index c77d258..4427868 100644 --- a/toolbox-inserts.scad +++ b/toolbox-inserts.scad @@ -82,6 +82,7 @@ bit_h = 10; bit_fixing_depth = 6.0; bit_row_lengths = [11, 10, 11, 8]; +bit_row_lengths_add_for_surround = [0, 0, 0, 1.2]; bit_bits_missing = [ [1, 0], [9, 0] ]; bit_holder_fixings_xl = 7; @@ -619,7 +620,7 @@ module BitHolderOuterPlan() { ny = len(bit_row_lengths); hull(){ for (y = [0: ny-1]) { - nx = bit_row_lengths[y]; + nx = bit_row_lengths[y] + bit_row_lengths_add_for_surround[y]; translate([ 0, (y - (ny-1)/2) * bit_pitch_y ]) square( [ bit_pitch_x * (nx-1), 1 ]