From: Ian Jackson Date: Wed, 31 Oct 2018 01:28:35 +0000 (+0000) Subject: ksafe-base: thumb slots X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=ebe1632b42a104655c246fd76967dd9678afddf6;p=reprap-play.git ksafe-base: thumb slots Signed-off-by: Ian Jackson --- diff --git a/ksafe-base.scad b/ksafe-base.scad index d6daa8f..79cf6bd 100644 --- a/ksafe-base.scad +++ b/ksafe-base.scad @@ -23,6 +23,9 @@ anchor_rad = 4; bevel = 8; string_slot = 3.0; string_depth = 6.0; +thumbslot_depth = 5.0; +thumbslot_width = 15.0; +thumbslot_between = 10; // ----- calculated ----- @@ -239,6 +242,16 @@ module KsafeBase(){ ////toplevel cube([ cut*2, string_slot, lidinner_thick_allow + string_depth + 1 ]); + + // thumb slots + for (mx=[0,1]) mirror([mx,0,0]) { + translate([ thumbslot_between/2, + 0, + -thumbslot_depth ]) + cube([ thumbslot_width, + cut, + thumbslot_depth+1 ]); + } } }