From d450221a88f5f26dd30163822737598ad63f4980 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 25 Oct 2020 21:34:36 +0000 Subject: [PATCH] steamer-handle-clip: wip Signed-off-by: Ian Jackson --- steamer-handle-clip.scad | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 steamer-handle-clip.scad diff --git a/steamer-handle-clip.scad b/steamer-handle-clip.scad new file mode 100644 index 0000000..0351a96 --- /dev/null +++ b/steamer-handle-clip.scad @@ -0,0 +1,23 @@ +// -*- C -*- + +include + +width = 20; +cup = 2.5; +jaw = 32.36 - 2.00; + +a = cup; +b = width/2; +alpha = atan2(a, b); +c = vectorlen2d([a, b]); +r = c / (2*tan(2*alpha)); +C = [0, a-r]; + +module Thing() { + translate(C) + circle(r=r); +// translate([0, -20]) +// square(center=true, [width, 40]); +} + +Thing(); -- 2.30.2