shithub: soundpipe

ref: 96de5819111e6f89e310981e49fa52e8b9cae653
dir: /util/faust/triangle.dsp/

View raw version
import("oscillator.lib");

freq = hslider("[0]freq", 440, 0, 20000, 0.0001);
amp = hslider("[1]amp", 1, 0, 1, 0.00001);

process = triangle(freq) * amp;