/usr/share/SuperCollider/HelpSource/Classes/PanB.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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | class:: PanB
summary:: Ambisonic B-format panner.
related:: Classes/BiPanB2, Classes/DecodeB2, Classes/PanB2, Classes/Rotate2
categories:: UGens>Multichannel>Ambisonics
Description::
Ambisonic B format panner. Output channels are in order W, X, Y, Z.
classmethods::
method::ar, kr
argument::in
The input signal.
argument::azimuth
Azimuth in radians, -π to +π.
argument::elevation
Elevation in radians, -0.5π to +0.5π.
argument::gain
A control rate level input.
Examples::
code::
// You'll only hear the first two channels on a stereo setup.
play({
#w, x, y, z = PanB.ar(WhiteNoise.ar, LFSaw.kr(0.5,pi), FSinOsc.kr(0.31, 0.5pi), 0.3);
//decode for 4 channels
DecodeB2.ar(4, w, x, y, 0.5);
});
::
|