From: Ian Jackson Date: Wed, 31 Oct 2018 01:07:48 +0000 (+0000) Subject: ksafe-base: string slots X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=391e60ac3303391d9e929ee5f84b1db3ce2e40ee;hp=a604301d71ccb2b91482f7264229c3bc4cac1c60 ksafe-base: string slots Signed-off-by: Ian Jackson --- 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 ]); } }