From 391e60ac3303391d9e929ee5f84b1db3ce2e40ee Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 31 Oct 2018 01:07:48 +0000 Subject: [PATCH 1/1] ksafe-base: string slots Signed-off-by: Ian Jackson --- ksafe-base.scad | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ksafe-base.scad b/ksafe-base.scad index c9ddf77..4441b2a 100644 --- a/ksafe-base.scad +++ b/ksafe-base.scad @@ -21,6 +21,8 @@ space = 25; anchor_thick = 4; anchor_rad = 4; bevel = 8; +string_slot = 3.0; +string_depth = 6.0; // ----- calculated ----- @@ -228,6 +230,15 @@ module KsafeBase(){ // bolt holes translate([0,0, -bolt_above -0.5 * bolthole_height]) cube(center=true, [ cut, bolthole_width, bolthole_height ]); + + // string slot + translate([ -cut, + -(bolthole_width/2 + bolthole_rhs), + 1 ]) + mirror([0,1,0]) mirror([0,0,1]) + cube([ cut*2, + string_slot, + lidinner_thick_allow + string_depth + 1 ]); } } -- 2.30.2