-rw-r--r-- | delta.jscad | 5 |
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 = { rv = rv.connectTo(rv.properties.c_column,cols[i].properties.c_bottom,false,0); return rv; }); var rv = union(cols).union(sides.map(union)).union(feet); rv.properties.P = new CSG.Connector([0,0,0],[0,0,1],[1,0,0]); return rv; + }, + duetholder: function(params) { + return duetholder(); } }; function main(params) { var part = params.part && PARTS[params.part]; if(!part) return refaxes(); @@ -801,20 +804,22 @@ function getParameterDefinitions() { type: 'choice', values: [ 'platform', 'hinged', 'clamp', 'fanholder', + 'duetholder', 'alltogethernow', 'wip' ], captions: [ 'Effector platform', 'Hinged part', 'Clamp', 'Fan holder', + 'Duet holder', 'All together now!', 'Work in progress' ], caption: 'Part', initial: 'wip' },{ |