-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 | |||
@@ -548,27 +548,42 @@ var E2020 = { | |||
548 | return rv; | 548 | return rv; |
549 | } | 549 | } |
550 | }; | 550 | }; |
551 | 551 | ||
552 | var THREEWINDS = [0,120,240]; | 552 | var THREEWINDS = [0,120,240]; |
553 | 553 | ||
554 | function base_extrusions() { | ||
555 | var rv = union( THREEWINDS.map(function(w) { | ||
556 | var e = E2020.extrusion({l:CONFIG.base.el}); | ||
557 | e = e.connectTo(e.properties.c_midway, | ||
558 | new CSG.Connector([0,-CD.base.mid_inscription_r,CONFIG.extrusion.w/2],[1,0,0],[0,0,1]), | ||
559 | false, 0); | ||
560 | return union( [0,CONFIG.extrusion.w+CONFIG.base.gap].map(function(z) { | ||
561 | return e.translate([0,0,z]); | ||
562 | }) ).rotateZ(w); | ||
563 | }) ); | ||
564 | rv.properties.P = new CSG.Connector([0,0,0],[0,0,1],[1,0,0]); | ||
565 | return rv.setColor(CONFIG.color.extrusion); | ||
566 | } | ||
567 | |||
554 | function refaxes(o) { | 568 | function refaxes(o) { |
555 | if(!o) o = {}; | 569 | if(!o) o = {}; |
556 | var l = o.l||20, g = o.g||0.7; | 570 | var l = o.l||20, g = o.g||0.7; |
557 | return union([ | 571 | return union([ |
558 | CSG.cylinder({start:[0,0,0],end:[l,0,0]}).setColor([1,0,0,g]), | 572 | CSG.cylinder({start:[0,0,0],end:[l,0,0]}).setColor([1,0,0,g]), |
559 | CSG.cylinder({start:[0,0,0],end:[0,l,0]}).setColor([0,1,0,g]), | 573 | CSG.cylinder({start:[0,0,0],end:[0,l,0]}).setColor([0,1,0,g]), |
560 | CSG.cylinder({start:[0,0,0],end:[0,0,l]}).setColor([0,0,1,g]) | 574 | CSG.cylinder({start:[0,0,0],end:[0,0,l]}).setColor([0,0,1,g]) |
561 | ]); | 575 | ]); |
562 | } | 576 | } |
577 | |||
563 | function P(x) { | 578 | function P(x) { |
564 | return x.connectTo(x.properties.P,new CSG.Connector([0,0,0],[0,0,1],[1,0,0]), false, 0); | 579 | return x.connectTo(x.properties.P,new CSG.Connector([0,0,0],[0,0,1],[1,0,0]), false, 0); |
565 | } | 580 | } |
566 | 581 | ||
567 | function main(params) { | 582 | function main(params) { |
568 | return P(E2020.extrusion({l:40})).setColor(0.7,0.7,0.7,0.7); | 583 | return refaxes().union(P(base_extrusions())); |
569 | } | 584 | } |
570 | 585 | ||
571 | function _main(params) { | 586 | function _main(params) { |
572 | var e = EFFECTOR.effector(); | 587 | var e = EFFECTOR.effector(); |
573 | var hs = E3DV6.heatsink(); | 588 | var hs = E3DV6.heatsink(); |
574 | hs = hs.connectTo(hs.properties.grove_connector,e.properties.grove_connector,false,0); | 589 | hs = hs.connectTo(hs.properties.grove_connector,e.properties.grove_connector,false,0); |