From: Ian Jackson Date: Fri, 1 Mar 2019 20:13:32 +0000 (+0000) Subject: salter-scale-hook: wip CutProfile X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=2e786ab0b1d223af059cedf748eabf35fa6668ea;p=reprap-play.git salter-scale-hook: wip CutProfile Signed-off-by: Ian Jackson --- diff --git a/salter-scale-hook.scad b/salter-scale-hook.scad index e67ed73..5eb7666 100644 --- a/salter-scale-hook.scad +++ b/salter-scale-hook.scad @@ -42,11 +42,13 @@ module Profile() { } module CutProfile(){ -// rectfromto([ + x = rod_dia/2 + rearthick; + rectfromto([x,yminc], [30,ymaxc]); } module Demo(){ Profile(); + color("red") translate([0,0,1]) CutProfile(); } Demo();