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) (unidiff) | |
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 | |||
@@ -530,63 +530,78 @@ var E2020 = { | |||
530 | var fw = [0,90,180,270]; // four winds | 530 | var fw = [0,90,180,270]; // four winds |
531 | var iy = e.outer/2-e.T.depth; | 531 | var iy = e.outer/2-e.T.depth; |
532 | var ix = e.T.width/2-(e.outer/2-iy-e.thickness-e.T.thickness); | 532 | var ix = e.T.width/2-(e.outer/2-iy-e.thickness-e.T.thickness); |
533 | rv = rv.union(fw.map(function(w) { | 533 | rv = rv.union(fw.map(function(w) { |
534 | return CAG.fromPoints([ | 534 | return CAG.fromPoints([ |
535 | [ e.slot_width/2,e.outer/2], | 535 | [ e.slot_width/2,e.outer/2], |
536 | [ e.slot_width/2,e.outer/2-e.thickness], | 536 | [ e.slot_width/2,e.outer/2-e.thickness], |
537 | [ e.T.width/2,e.outer/2-e.thickness], | 537 | [ e.T.width/2,e.outer/2-e.thickness], |
538 | [ e.T.width/2,e.outer/2-e.thickness-e.T.thickness], | 538 | [ e.T.width/2,e.outer/2-e.thickness-e.T.thickness], |
539 | [ ix, iy ], | 539 | [ ix, iy ], |
540 | [ -ix, iy ], | 540 | [ -ix, iy ], |
541 | [ -e.T.width/2,e.outer/2-e.thickness-e.T.thickness], | 541 | [ -e.T.width/2,e.outer/2-e.thickness-e.T.thickness], |
542 | [ -e.T.width/2,e.outer/2-e.thickness], | 542 | [ -e.T.width/2,e.outer/2-e.thickness], |
543 | [ -e.slot_width/2,e.outer/2-e.thickness], | 543 | [ -e.slot_width/2,e.outer/2-e.thickness], |
544 | [ -e.slot_width/2,e.outer/2], | 544 | [ -e.slot_width/2,e.outer/2], |
545 | ]).extrude({offset:[0,0,l+thickness]}).rotateZ(w); | 545 | ]).extrude({offset:[0,0,l+thickness]}).rotateZ(w); |
546 | })); | 546 | })); |
547 | rv.properties.P = new CSG.Connector([0,0,0],[0,0,1],[1,0,0]); | 547 | rv.properties.P = new CSG.Connector([0,0,0],[0,0,1],[1,0,0]); |
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); |
575 | var ms = microswitch(); | 590 | var ms = microswitch(); |
576 | var hd = EFFECTOR.hinged({ | 591 | var hd = EFFECTOR.hinged({ |
577 | microswitch:ms,effector:e | 592 | microswitch:ms,effector:e |
578 | }); | 593 | }); |
579 | ms = ms.connectTo( | 594 | ms = ms.connectTo( |
580 | ms.properties.screw_connector[0], | 595 | ms.properties.screw_connector[0], |
581 | hd.properties.microswitch_screw_connector[0], | 596 | hd.properties.microswitch_screw_connector[0], |
582 | false, 0); | 597 | false, 0); |
583 | var hdhd = EFFECTOR.split_hinged(hd); | 598 | var hdhd = EFFECTOR.split_hinged(hd); |
584 | var fh = EFFECTOR.fanholder(); | 599 | var fh = EFFECTOR.fanholder(); |
585 | return union({ | 600 | return union({ |
586 | platform: e, | 601 | platform: e, |
587 | hinged: hdhd[1], | 602 | hinged: hdhd[1], |
588 | clamp: hdhd[0], | 603 | clamp: hdhd[0], |
589 | fanholder: fh, | 604 | fanholder: fh, |
590 | alltogethernow: [e,hdhd[0],hdhd[1], columns(),hs,ms,fh] | 605 | alltogethernow: [e,hdhd[0],hdhd[1], columns(),hs,ms,fh] |
591 | }[params.part||'alltogethernow']) | 606 | }[params.part||'alltogethernow']) |
592 | var rv = union( | 607 | var rv = union( |