author | Michael Krelin <hacker@klever.net> | 2016-01-13 10:12:57 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2016-01-13 10:12:57 (UTC) |
commit | f8b3bc2a1792a7ee8eeacf7dd1d9f5b3cc96a7a6 (patch) (unidiff) | |
tree | e6a937de0d20ef2a8b645a3f9ee7a3e82617fe40 | |
parent | 8d9ad499fcb960e825f92580bf96215c73ee91ea (diff) | |
download | redelta-f8b3bc2a1792a7ee8eeacf7dd1d9f5b3cc96a7a6.zip redelta-f8b3bc2a1792a7ee8eeacf7dd1d9f5b3cc96a7a6.tar.gz redelta-f8b3bc2a1792a7ee8eeacf7dd1d9f5b3cc96a7a6.tar.bz2 |
raised the bed
-rw-r--r-- | delta.jscad | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/delta.jscad b/delta.jscad index 54f1f86..7384ecf 100644 --- a/delta.jscad +++ b/delta.jscad | |||
@@ -738,13 +738,15 @@ function heatbed() { | |||
738 | radius: 3/2 | 738 | radius: 3/2 |
739 | }); | 739 | }); |
740 | var screws = []; | 740 | var screws = []; |
741 | for(var a=0;a<360;a+=60) screws.push(screw.rotateZ(a)); // TODO: connectors | 741 | for(var a=0;a<360;a+=60) screws.push(screw.rotateZ(a)); // TODO: connectors |
742 | rv = rv.subtract(screws); | 742 | rv = rv.subtract(screws); |
743 | rv.properties.c_glass = new CSG.Connector([0,0,CONFIG.heatbed.h],[0,0,1],[1,0,0]); | 743 | rv.properties.c_glass = new CSG.Connector([0,0,CONFIG.heatbed.h],[0,0,1],[1,0,0]); |
744 | rv.properties.P = new CSG.Connector([0,0,-CONFIG.foot.h-CONFIG.extrusion.w*2-CONFIG.base.gap],[0,0,1],[1,0,0]); | 744 | rv.properties.P = new CSG.Connector( |
745 | [0,0,-CONFIG.foot.h-CONFIG.extrusion.w*2-CONFIG.base.gap-CONFIG.bedholder.h], | ||
746 | [0,0,1],[1,0,0]); | ||
745 | rv.properties.vitamin = true; | 747 | rv.properties.vitamin = true; |
746 | return rv.setColor(CONFIG.color.heatbed); | 748 | return rv.setColor(CONFIG.color.heatbed); |
747 | } | 749 | } |
748 | function glass() { | 750 | function glass() { |
749 | var rv = CSG.cylinder({ | 751 | var rv = CSG.cylinder({ |
750 | start: [0,0,0], end: [0,0,CONFIG.glass.h], | 752 | start: [0,0,0], end: [0,0,CONFIG.glass.h], |