Out

object Out extends ProductReader[Out]

A UGen that writes a signal onto a bus. It adds ("mixes") the input-signal to the existing contents of the bus.

Multi-channel input signals, for example a PanAz , are written as such to the bus without expansion. That is, the bus index argument is used for the first channel, the second channel will appear on bus + 1 , etc.

If you have an expanding multi-channel input, however, you have to be careful. For example, if you have PanAz.ar(2, SinOsc.ar(Seq(444, 555, 666)) * 0.2, Seq(-1, 0, 1)) , this results in one output UGen carrying one channel, and another one carrying two channels. (The way this works is consistent with SCLang). In order to get the correct behaviour (left outputs of the PanAz summed, and right output of the PanAz summed), wrap this expression in a Mix(...) before passing it to the output UGen.

===Examples===

// cross-synth routing
// allocate an internal stereo audio-bus
val bus = Bus.audio(s, 2)

// writes to internal bus (initially inaudible)
val x = play {
 Out.ar(bus.index, Dust.ar(Seq(345, 345)))
}

// reads internal bus and makes it audible.
// must be after `x` to be able to read the bus signal
val y = play(target = x, addAction = addAfter) {
 val in = In.ar(bus.index, 2)
 Resonz.ar(in, 555, 0.1) * 10
}

// when done, do not forget to free the bus
y.free(); x.free(); bus.free()
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[Out]
class Object
trait Matchable
class Any

Type members

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def ar(bus: GE, in: GE): Out
Value Params
bus

bus index to write to. For an audio-rate UGen, this is an audio-bus, for a control-rate UGen, this is a control-bus. '''Note''' that the bus index can only be modulated at control-rate.

in

signal to write to the bus. If the UGen is audio-rate, the input must also be audio-rate.

def kr(bus: GE, in: GE): Out
Value Params
bus

bus index to write to. For an audio-rate UGen, this is an audio-bus, for a control-rate UGen, this is a control-bus. '''Note''' that the bus index can only be modulated at control-rate.

in

signal to write to the bus. If the UGen is audio-rate, the input must also be audio-rate.

def read(in: RefMapIn, key: String, arity: Int): Out