author | Michael Krelin <hacker@klever.net> | 2016-01-06 22:35:05 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2016-01-06 22:35:05 (UTC) |
commit | 79d2c17aae2b852d1af73c3c2192430b87070935 (patch) (side-by-side diff) | |
tree | 8f772971df4222ec573b349f24e0bb341e350414 | |
parent | 6be14d3c81d6ce000ed7964c51adf99049e4e19f (diff) | |
download | redelta-79d2c17aae2b852d1af73c3c2192430b87070935.zip redelta-79d2c17aae2b852d1af73c3c2192430b87070935.tar.gz redelta-79d2c17aae2b852d1af73c3c2192430b87070935.tar.bz2 |
base extrusions
-rw-r--r-- | delta.jscad | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/delta.jscad b/delta.jscad index 9883003..be12b65 100644 --- a/delta.jscad +++ b/delta.jscad @@ -552,4 +552,18 @@ var E2020 = { var THREEWINDS = [0,120,240]; +function base_extrusions() { + var rv = union( THREEWINDS.map(function(w) { + var e = E2020.extrusion({l:CONFIG.base.el}); + e = e.connectTo(e.properties.c_midway, + new CSG.Connector([0,-CD.base.mid_inscription_r,CONFIG.extrusion.w/2],[1,0,0],[0,0,1]), + false, 0); + return union( [0,CONFIG.extrusion.w+CONFIG.base.gap].map(function(z) { + return e.translate([0,0,z]); + }) ).rotateZ(w); + }) ); + rv.properties.P = new CSG.Connector([0,0,0],[0,0,1],[1,0,0]); + return rv.setColor(CONFIG.color.extrusion); +} + function refaxes(o) { if(!o) o = {}; @@ -561,4 +575,5 @@ function refaxes(o) { ]); } + function P(x) { return x.connectTo(x.properties.P,new CSG.Connector([0,0,0],[0,0,1],[1,0,0]), false, 0); @@ -566,5 +581,5 @@ function P(x) { function main(params) { - return P(E2020.extrusion({l:40})).setColor(0.7,0.7,0.7,0.7); + return refaxes().union(P(base_extrusions())); } |