/usr/share/SuperCollider/HelpSource/Classes/ToggleFF.schelp is in supercollider-common 1:3.8.0~repack-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | class:: ToggleFF
summary:: Toggle flip flop.
related:: Classes/SetResetFF
categories:: UGens>Triggers
Description::
Toggles between 0 and 1 upon receiving a trigger.
classmethods::
method::ar, kr
argument::trig
Trigger input.
Examples::
code::
(
play({
SinOsc.ar((ToggleFF.ar(Dust.ar(XLine.kr(1,1000,60))) * 400) + 800, 0, 0.1)
}))
::
|