Forgot a help fix: Drag a dock's title bar, not divider, to reposition
[supercollider.git] / HelpSource / Classes / Balance2.schelp
blob55db9b90b47fa08f68b57294b4bc4fcab6a3dc86
1 class:: Balance2
2 summary:: Stereo signal balancer
3 related:: Classes/LinPan2, Classes/Pan2, Classes/Pan4, Classes/PanAz
4 categories::  UGens>Multichannel>Panners
7 Description::
9 Equal power panning balances two channels; by panning, you are favouring one or other channel in the mix, and the other loses power.
11 classmethods::
12 private:: categories
14 method::ar, kr
16 argument::left
17 channel 1 of input stereo signal
19 argument::right
20 channel 2 of input stereo signal
22 argument::pos
23 pan position, -1 is left, +1 is right
25 argument::level
26 a control rate level input.
28 discussion::
29 The middle pan position (pos=0.0) corresponds to the original stereo mix; full left (pos of -1) is essentially just left channel playing, full right (pos of 1) just the right. The output of Balance2 remains a stereo signal.
31 Examples::
32 code::
33 {Balance2.ar(LFSaw.ar(44),Pulse.ar(33),FSinOsc.kr(0.5), 0.1) }.play;
35 {var source; source= SinOsc.ar([440,550]); Balance2.ar(source[0],source[1],LFNoise0.kr(4),0.3) }.play;