Home | History | Annotate | Download | only in webaudio

Lines Matching defs:azimuth

116         double azimuth;
118 getAzimuthElevation(&azimuth, &elevation);
119 m_panner->pan(azimuth, elevation, source, destination, framesToProcess);
263 // FIXME: we should cache azimuth and elevation (if possible), so we only re-calculate if a change has been made.
265 double azimuth = 0.0;
296 azimuth = 180.0 * acos(projectedSource.dot(listenerRight)) / piDouble;
297 fixNANs(azimuth); // avoid illegal values
302 azimuth = 360.0 - azimuth;
304 // Make azimuth relative to "front" and not "right" listener vector
305 if ((azimuth >= 0.0) && (azimuth <= 270.0))
306 azimuth = 90.0 - azimuth;
308 azimuth = 450.0 - azimuth;
320 *outAzimuth = azimuth;