From: Ian Jackson Date: Sun, 28 Aug 2016 13:51:31 +0000 (+0100) Subject: flyscreen-handle: from v3: Prep for multiple holes in bottom for strap (nfc) X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=8443a2d39238b9d910071338cd710629a1b81d35;p=reprap-play.git flyscreen-handle: from v3: Prep for multiple holes in bottom for strap (nfc) --- diff --git a/flyscreen-handle.scad b/flyscreen-handle.scad index 25973ef..4c29fea 100644 --- a/flyscreen-handle.scad +++ b/flyscreen-handle.scad @@ -143,8 +143,10 @@ module StrapSectTop(){ module StrapSectBot(){ mirror([0,1]){ - translate(P9b + [ ourcirc_r - (strap_below + strap_th), -10 ]) { - square([strap_th, 20]); + for (dx = [ -(strap_below + strap_th) ]) { + translate(P9b + [ ourcirc_r + dx, -10 ]) { + square([strap_th, 20]); + } } } }