Creates a proxy that represents a specific output channel of the element.
Creates a proxy that represents a specific output channel of the element.
channel-index, zero-based. Indices which are greater than or equal to the number of outputs are wrapped around.
a monophonic element that represents the given channel of the receiver
Polls the output values of this graph element, and prints the result to the console.
Polls the output values of this graph element, and prints the result to the console.
This is a convenient method for wrapping this graph element in a Poll
UGen.
a signal to trigger the printing. If this is a constant, it is
interpreted as a frequency value and an Impulse
generator of that frequency
is used instead.
a string to print along with the values, in order to identify
different polls. Using the special label "$auto"
(default) will generated
automatic useful labels using information from the polled graph element
if greater then 0, a "/tr"
OSC message is sent back to the client
(similar to SendTrig
)
Warning: Unlike a normal power operation, the signum of the left operand is always preserved.
Warning: Unlike a normal power operation, the signum of the
left operand is always preserved. I.e. DC.kr(-0.5).pow(2)
will
not output 0.25
but -0.25
. This is to avoid problems with
floating point noise and negative input numbers, so
DC.kr(-0.5).pow(2.001)
does not result in a NaN
, for example.