From: Ian Jackson Date: Sun, 25 Oct 2020 21:42:17 +0000 (+0000) Subject: steamer-handle-clip: wip X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a691a1ec68736e82222db9b541012faf16985a81;p=reprap-play.git steamer-handle-clip: wip Signed-off-by: Ian Jackson --- diff --git a/steamer-handle-clip.scad b/steamer-handle-clip.scad index eb06b7b..477070e 100644 --- a/steamer-handle-clip.scad +++ b/steamer-handle-clip.scad @@ -1,6 +1,7 @@ // -*- C -*- include +include width = 20; cup = 2.5; @@ -14,10 +15,16 @@ r = a / (1 - cos(2*alpha)); C = [0, a-r]; module Thing() { - translate(C) - circle(r=r); -// translate([0, -20]) -// square(center=true, [width, 40]); + intersection(){ + hull(){ + translate(C) + circle(r=r); + translate([0, -jaw]) + square(center=true, [width, 10]); + } + rectfromto([ -width/2, -jaw ], + [ width/2, 20 ]); + } } Thing();