From: Ian Jackson Date: Fri, 1 Mar 2019 20:08:39 +0000 (+0000) Subject: salter-scale-hook: wip X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=0ea044c600481aa892e8828a3f30f990d12b999a;p=reprap-play.git salter-scale-hook: wip Signed-off-by: Ian Jackson --- diff --git a/salter-scale-hook.scad b/salter-scale-hook.scad index 849c314..afacf9f 100644 --- a/salter-scale-hook.scad +++ b/salter-scale-hook.scad @@ -1,22 +1,42 @@ // -*- C -*- +include + rod_dia = 8+2; thick = 8; screw_dia = 3.5 + 0.75; screw_head_dia = 8.2 + 1.0; rod_offset = 14 + 2; +mainheight = 25; width = 40; module C() { - circle(r = rod_dia/2, $fn=20); + circle(r = thick/2, $fn=30); } module Profile() { d = rod_dia/2 + thick/2; + e = rod_offset; hull(){ translate([-d, 0]) C(); translate([-d,-d]) C(); } + difference(){ + rectfromto([-d,-d-thick/2], [e,0]); + circle(r= rod_dia/2, $fn=50); + } + hull(){ + for (y= [-d, +mainheight]) { + translate([d, y]) C(); + rectfromto([d, y-thick/2], [e, y+thick/2]); + } + } } -Profile(); +module CutProfile(){ + +} + +module Demo(){ + Profile(); +}