From 5849d0bf9af78228aad730e9c1690f85ddc02c92 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 14 Aug 2016 14:55:41 +0100 Subject: [PATCH] lock-inframe-bracket: ClipElevations seem ok --- lock-inframe-bracket.scad | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lock-inframe-bracket.scad b/lock-inframe-bracket.scad index 64ce9c7..5bec118 100644 --- a/lock-inframe-bracket.scad +++ b/lock-inframe-bracket.scad @@ -14,6 +14,7 @@ back_gap = 7; main_th = 2.5; midweb_d = 3; clip_th = 2.5; +clip_gap = 2.5; // calculated @@ -62,11 +63,13 @@ module MainPlan(){ lockshaft_or = lockshaft_r + [clip_th,clip_th]; cliprecess_ymax = cliprecess_h - lockshaft_r[1]; clip_ymin = cliprecess_ymax - total_h; +clip_ogap = clip_gap + clip_th*2; module ClipElevationPositive(){ oval(lockshaft_or); translate([-lockshaft_or[0], 0]) square([lockshaft_or[0]*2, cliprecess_ymax]); + translate([-clip_ogap/2, 0]) mirror([0,1]) square([clip_ogap, -clip_ymin]); } module ClipElevationNegative(){ @@ -75,6 +78,7 @@ module ClipElevationNegative(){ translate([0, y]) oval(lockshaft_r); } + translate([-clip_gap/2, 1]) mirror([0,1]) square([clip_gap, 2-clip_ymin]); } module ClipElevation(){ -- 2.30.2