sf::Vector3f stereoPanPosition(float panAmount)
{
// make sure that panAmount is in the range [-1, 1] (-1 is left; 1 is right)
if (panAmount > 1.f) panAmount = 1.f;
if (panAmount < -1.f) panAmount = -1.f;
return{ panAmount, 0.f, panAmount < 0.f ? -panAmount - 1.f : panAmount - 1.f };
}
To use, you can set the panning of the sound by using:
sound.setPosition(stereoPanPosition(pan));
where pan is a value from -1 to 1, representing left to right.
Although this works fine, it's not perfect. The amount of panning is more severe nearer the sides. This is because this code 'moves' the sound linearly (diagonally between a side and the front). It would work better if it was positioned using a curve instead. Homework for you... ;)