X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=ksafe-base.scad;h=79cf6bd2ef57b64ba30d672a89833ca2790916f7;hp=d6daa8f91bf3b0e5eb0be822a9a02d8d529edd95;hb=ebe1632b42a104655c246fd76967dd9678afddf6;hpb=9c3617a7b5dbe86334a9cfb107cf9ce037c58240 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 ]); + } } }