Commit ba928e18 by Torkel Ödegaard

Merge pull request #245 from magicrobotmonkey/add_functions

Add transformNull, minSeries and maxSeries
parents 2d89cb09 8d7669bc
......@@ -84,6 +84,18 @@ function (_) {
});
addFuncDef({
name: 'maxSeries',
shortName: 'max',
category: categories.Combine,
});
addFuncDef({
name: 'minSeries',
shortName: 'min',
category: categories.Combine,
});
addFuncDef({
name: 'averageSeriesWithWildcards',
category: categories.Combine,
params: [ { name: "node", type: "int" } ],
......@@ -226,6 +238,13 @@ function (_) {
});
addFuncDef({
name: 'transformNull',
category: categories.Transform,
params: [ { name: "amount", type: "int", } ],
defaultParams: [0]
});
addFuncDef({
name: 'integral',
category: categories.Transform,
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment