de.sciss.synth.ugen
Mixes the channels of a signal together. Works exactly like the sclang counterpart.
Here are some examples:
Mix(SinOsc.ar(440 :: 660 :: Nil)) --> SinOsc.ar(440) + SinOsc.ar(660) Mix(SinOsc.ar(440)) --> SinOsc.ar(440) Mix(Pan2.ar(SinOsc.ar)) --> left + right Mix(Pan2.ar(SinOsc.ar(440 :: 660 :: Nil))) --> [left(440) + left(660), right(440) + right(660)]
Abstract method which must be implemented by creating the actual UGens during expansion.
UGen
Abstract method which must be implemented by creating the actual UGens during expansion. This method is at most called once during graph expansion
the expanded object (depending on the type parameter U)
U
Mixes the channels of a signal together. Works exactly like the sclang counterpart.
Here are some examples: