Commit 863e58a8 by Markus Linnala

add support for graphite functions: maximumAbove maximumBelow minimumAbove

parent e441e970
......@@ -295,6 +295,27 @@ function (_) {
});
addFuncDef({
name: 'maximumAbove',
category: categories.Filter,
params: [ { name: "value", type: "int" } ],
defaultParams: [0]
});
addFuncDef({
name: 'maximumBelow',
category: categories.Filter,
params: [ { name: "value", type: "int" } ],
defaultParams: [0]
});
addFuncDef({
name: 'minimumAbove',
category: categories.Filter,
params: [ { name: "value", type: "int" } ],
defaultParams: [0]
});
addFuncDef({
name: "exclude",
category: categories.Filter,
params: [ { name: "exclude", type: 'string' } ],
......
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