2 summary:: Set-reset flip flop.
3 related:: Classes/ToggleFF
4 categories:: UGens>Triggers
9 Output is set to 1.0 upon receiving a trigger in the trig input, and to
10 0.0 upon receiving a trigger in the reset input. Once the flip flop is
11 set to zero or one further triggers in the same input are have no effect.
12 One use of this is to have some precipitating event cause something to
13 happen until you reset it.
22 The trigger that sets output to 1. Trigger can be any signal.
23 A trigger happens when the signal changes from non-positive to
29 The trigger that sets output to 0. Trigger can be any signal.
30 A trigger happens when the signal changes from non-positive to
40 a = Dust.ar(5); // the set trigger
41 b = Dust.ar(5); // the reset trigger
42 SetResetFF.ar(a,b) * BrownNoise.ar(0.2);