<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Nov 12, 2010, at 1:18 AM, <a href="mailto:fons@kokkinizita.net">fons@kokkinizita.net</a> wrote:</div><blockquote type="cite"><div><font class="Apple-style-span" color="#000000"><br></font>If you are concerned about the CPU use, consider this:<br><br>panning value x = [-1..+1]<br><br>L_gain = (1 - x) * (0.7 + 0.2 * x)<br>R_gain = (1 + x) * (0.7 - 0.2 * x)<br><br>which will be -3.1 dB at the center. You can modify this<br>modyfying the 0.7 and 0.2 constants, for example<br><br>L_gain = (1 - x) * (0.65 + 0.15 * x)<br>R_gain = (1 + x) * (0.65 - 0.15 * x)<br><br>will produce -3.75 dB, and<br><br>L_gain = (1 - x) * (0.6 + 0.1 * x)<br>R_gain = (1 + x) * (0.6 - 0.1 * x)<br><br>will produce -4.4 dB, etc.<br></div></blockquote></div><br><div>Thanks! I thought a bit about quadratics but didn't pursue it. </div></body></html>