RedDefault a hacked default synth



note: this class will overwrite your default synth at recompile.  though it is easy to undo and get back to normal.


1. delete the file default.scsyndef in your synthdefs directory.  either manually or with RedDefault.revert

2. uninstall this class with... Quarks.uninstall("redDefault")

3. recompile and supercollider should have created a brand new default.scsynth for you.



now any event you try to play with the default synth will sound a lot better.

eg try the examples in [Streams-Patterns-Events5] or [Streams-Patterns-Events6]



s.boot;

Pbind(\dur, 3, \amp, 0.3).play


Pbind(\dur, Prand([0.15, 0.1, 0.05], inf), \freq, Pseq([250, 500, 1000, 500], inf)).play


Pbind(\dur, 0.15, \freq, Pseq([[400, 900], 400, [400, 900], Prand([20, 200], 1)], inf)*Pseq([Pn(1, 16), Pn(0.5, 16), Pn(1, 16), Pn(0.9, 16)], inf), \legato, 1.5).play


Pbind(\dur, 0.1, \degree, Pn(Pseries(-6, 4, 8), inf), \lag, Pseq([0, 0.1, 0.2], inf)).play