From: Ian Jackson Date: Fri, 26 Aug 2016 19:17:18 +0000 (+0100) Subject: flyscreen-handle: tapered peg section X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=94c6cc4ac55fa846260ad3c2e122a5fcef921b0b flyscreen-handle: tapered peg section --- diff --git a/flyscreen-handle.scad b/flyscreen-handle.scad index 5d8a65f..3fe695a 100644 --- a/flyscreen-handle.scad +++ b/flyscreen-handle.scad @@ -37,6 +37,7 @@ basics_len = 8; overret_hch = 5; peg_width_slop = 0.5; +peg_inner_thick = 1.0; // calculated @@ -132,8 +133,13 @@ module RetainSection(){ } module PegSection(delta){ - square([peg_width, - peg_height + delta]); + hull(){ + square([0.1, + peg_height + delta]); + translate([peg_width - 0.1, + peg_height/2 - peg_inner_thick/2]) + square([0.1, peg_inner_thick]); + } } module PegSectionForDemo(delta){