* Bjornmossa DSP algorythms library This repo contains SC code for synthesis, processing and analysys algorythms. * Usage #+BEGIN_SRC sclang ( var sin_dict = BmDspAlgs.getDict("synths/distorted_sin.scd"); sin_dict[\postAmp] = true; sin_dict.makeSourceSynthDef.add(); ~synth = (); ~synth[\name] = \synth; Ndef(~synth[\name]).clear; Ndef(~synth[\name]).ar(2); Ndef(~synth[\name]).prime(sin_dict[\name]); Ndef(~synth[\name]).play; ) #+END_SRC