From: Ian Jackson Date: Sat, 7 Sep 2019 13:35:18 +0000 (+0100) Subject: utils: linextr_y_xz: New module X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=2a0ace050e5b29cd4b69adef2064716da0598568;p=reprap-play.git utils: linextr_y_xz: New module Signed-off-by: Ian Jackson --- diff --git a/utils.scad b/utils.scad index 16bd83b..e440b5f 100644 --- a/utils.scad +++ b/utils.scad @@ -42,3 +42,10 @@ module linextr_x_yz(x0,x1, convexity=20) { // XY turn into YZ linextr(x0,x1, convexity=convexity) children(); } + +module linextr_y_xz(y0,y1, convexity=20) { // XY turn into YZ + rotate([0,0,180]) + rotate([90,0,0]) + linextr(y0,y1, convexity=convexity) + children(); +}