c3423ff217a9d834f3c082727617cc71251c010c
[Faustine.git] / interpretor / faust-0.9.47mr3 / tools / faust2pd / examples / faust / panpot.dsp
1 declare name "panpot";
2 declare version "1.0";
3 declare author "Grame";
4 declare license "BSD";
5 declare copyright "(c)GRAME 2006";
6
7 //-------------------------------------------------
8 // Stereo panpot
9 //-------------------------------------------------
10
11 panpot(x) = (1-c)*x, c*x
12 with {
13 c=(nentry("",0,-8,8,1)-8)/-16;
14 };
15
16 process = vgroup("panpot", panpot);
17