Ejemplo n.º 1
0
		public static StereoIntSoundSample Mix(StereoIntSoundSample A, StereoIntSoundSample B)
		{
			return new StereoIntSoundSample((int)((A.Left + B.Left) / 2), (int)((A.Right + B.Right) / 2));
		}
Ejemplo n.º 2
0
 public static StereoIntSoundSample Mix(StereoIntSoundSample a, StereoIntSoundSample b) =>
 new StereoIntSoundSample((a.Left + b.Left) / 2, (a.Right + b.Right) / 2);