linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / ChaosGen.schelp
blob04960c66957f458ff65e0c3f1c5f0c7b4bbba3b2
1 class:: ChaosGen
2 summary:: UGens that cause chaos
3 categories:: UGens>Generators>Chaotic
5 description::
6 "ChaosGen" is an emphasis::abstract class:: - in other words, a class that you do not use directly. Instead, use one of its subclasses.
7 Various things inherit from this abstract class, including link::Classes/HenonN::, link::Classes/LinCongL::, link::Classes/LatoocarfianL::, link::Classes/GbmanL::, link::Classes/CuspL::, link::Classes/StandardL::, and more.
9 These chaotic UGens generally each represent a deterministic set of equations, which can take different starting parameters. The equations define a system whose evolution over time is highly sensitive to initial conditions, and can exhibit highly intricate behaviour.
11 To learn more, start here: http://en.wikipedia.org/wiki/Chaos_theory
13 To see all classes which derive from the ChaosGen class, run this line:
15 code::
16 ChaosGen.allSubclasses.do(_.postln)