Open markusmoenig opened 1 month ago
Hi,
is it possible to have operator with arguments, aka functions ? I can do an operator for "noise", but to change the frequency of the noise I would need todo something like "noise(5, 10)".
Possible ?
Hi. We currently have unary and binary operators. But no operators with more than 2 arguments. So you can do noise(5, 10) but not noise(5, 7, 10).
noise(5, 10)
noise(5, 7, 10)
Hi,
is it possible to have operator with arguments, aka functions ? I can do an operator for "noise", but to change the frequency of the noise I would need todo something like "noise(5, 10)".
Possible ?