From 2a0ace050e5b29cd4b69adef2064716da0598568 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 7 Sep 2019 14:35:18 +0100 Subject: [PATCH] utils: linextr_y_xz: New module Signed-off-by: Ian Jackson --- utils.scad | 7 +++++++ 1 file changed, 7 insertions(+) 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(); +} -- 2.30.2