chiark
/
gitweb
/
~ianmdlvl
/
reprap-play.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dcaa392
)
utils: linextr_y_xz: New module
author
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Sat, 7 Sep 2019 13:35:18 +0000
(14:35 +0100)
committer
Ian Jackson
<ijackson@chiark.greenend.org.uk>
Sat, 7 Sep 2019 13:35:18 +0000
(14:35 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
utils.scad
patch
|
blob
|
history
diff --git
a/utils.scad
b/utils.scad
index 16bd83b538a444a171a3491202175f6ddf6f6bb1..e440b5f03d6cf1966889522bbc497946d851fb57 100644
(file)
--- 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();
+}