summaryrefslogtreecommitdiffabout
authorMichael Krelin <hacker@klever.net>2016-01-08 22:12:31 (UTC)
committer Michael Krelin <hacker@klever.net>2016-01-08 22:12:31 (UTC)
commit27efa0c51613605858ead6186af5b7e47f50c687 (patch) (unidiff)
treee91853f102742ead6950c0a08b303a4ecea4bba8
parentaf783b9334f536d8adde19d39ed948c5274fe948 (diff)
downloadredelta-27efa0c51613605858ead6186af5b7e47f50c687.zip
redelta-27efa0c51613605858ead6186af5b7e47f50c687.tar.gz
redelta-27efa0c51613605858ead6186af5b7e47f50c687.tar.bz2
duet holder part
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--delta.jscad5
1 files changed, 5 insertions, 0 deletions
diff --git a/delta.jscad b/delta.jscad
index dcf6fcc..855d4f9 100644
--- a/delta.jscad
+++ b/delta.jscad
@@ -750,12 +750,15 @@ var PARTS = {
750 rv = rv.connectTo(rv.properties.c_column,cols[i].properties.c_bottom,false,0); 750 rv = rv.connectTo(rv.properties.c_column,cols[i].properties.c_bottom,false,0);
751 return rv; 751 return rv;
752 }); 752 });
753 var rv = union(cols).union(sides.map(union)).union(feet); 753 var rv = union(cols).union(sides.map(union)).union(feet);
754 rv.properties.P = new CSG.Connector([0,0,0],[0,0,1],[1,0,0]); 754 rv.properties.P = new CSG.Connector([0,0,0],[0,0,1],[1,0,0]);
755 return rv; 755 return rv;
756 },
757 duetholder: function(params) {
758 return duetholder();
756 } 759 }
757}; 760};
758 761
759function main(params) { 762function main(params) {
760 var part = params.part && PARTS[params.part]; 763 var part = params.part && PARTS[params.part];
761 if(!part) return refaxes(); 764 if(!part) return refaxes();
@@ -801,20 +804,22 @@ function getParameterDefinitions() {
801 type: 'choice', 804 type: 'choice',
802 values: [ 805 values: [
803 'platform', 806 'platform',
804 'hinged', 807 'hinged',
805 'clamp', 808 'clamp',
806 'fanholder', 809 'fanholder',
810 'duetholder',
807 'alltogethernow', 811 'alltogethernow',
808 'wip' 812 'wip'
809 ], 813 ],
810 captions: [ 814 captions: [
811 'Effector platform', 815 'Effector platform',
812 'Hinged part', 816 'Hinged part',
813 'Clamp', 817 'Clamp',
814 'Fan holder', 818 'Fan holder',
819 'Duet holder',
815 'All together now!', 820 'All together now!',
816 'Work in progress' 821 'Work in progress'
817 ], 822 ],
818 caption: 'Part', 823 caption: 'Part',
819 initial: 'wip' 824 initial: 'wip'
820 },{ 825 },{