SNEX for idiots
-
Hi guys, trying learn a bit with SNEX. Where can I find more examples (besides the sinewave osc on Docs) to play with?
-
FYI, I've just added a
core.simple_jit
module which allows one-line waveshaping algorithms that don't depend on states or external variables. This should be the most simple entry point to the world of SNEX. You can just enter stuff like:Math.abs(input - 2.0) * Math.PI + 3.0
input
is the hardcoded name for the input value and the calculation will be done for each sample. It's not the most efficient solution, but should get you acquainted with the general syntax and look and feel. -
@Christoph-Hart can't wait to play with it! (trying to do a sinewave bank for my weird additive stuff)