add support for graphite functions: maximumAbove maximumBelow minimumAbove

This commit is contained in:
Markus Linnala 2014-03-27 15:03:09 +02:00
parent e441e97030
commit 863e58a8e7

View File

@ -294,6 +294,27 @@ function (_) {
defaultParams: [25]
});
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,