Home | History | Annotate | Download | only in webaudio

Lines Matching defs:azimuth

106     double azimuth;
108 getAzimuthElevation(&azimuth, &elevation);
109 m_panner->pan(azimuth, elevation, source, destination, framesToProcess);
163 // FIXME: we should cache azimuth and elevation (if possible), so we only re-calculate if a change has been made.
165 double azimuth = 0.0;
196 azimuth = 180.0 * acos(projectedSource.dot(listenerRight)) / piDouble;
197 fixNANs(azimuth); // avoid illegal values
202 azimuth = 360.0 - azimuth;
204 // Make azimuth relative to "front" and not "right" listener vector
205 if ((azimuth >= 0.0) && (azimuth <= 270.0))
206 azimuth = 90.0 - azimuth;
208 azimuth = 450.0 - azimuth;
212 fixNANs(azimuth); // avoid illegal values
220 *outAzimuth = azimuth;