-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 @@ -752,8 +752,11 @@ var PARTS = { }); 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) { @@ -803,16 +806,18 @@ function getParameterDefinitions() { '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', |