HomeSort by relevance Sort by last modified time
    Searched refs:azimuth (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEDistantLightElement.idl 27 readonly attribute SVGAnimatedNumber azimuth;
SVGFELightElement.h 49 DECLARE_ANIMATED_NUMBER(Azimuth, azimuth)
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
DistantLightSource.h 32 static PassRefPtr<DistantLightSource> create(float azimuth, float elevation)
34 return adoptRef(new DistantLightSource(azimuth, elevation));
37 float azimuth() const { return m_azimuth; } function in class:WebCore::DistantLightSource
49 DistantLightSource(float azimuth, float elevation)
51 , m_azimuth(azimuth)
DistantLightSource.cpp 41 float azimuth = deg2rad(m_azimuth); local
43 paintingData.lightVector.setX(cosf(azimuth) * cosf(elevation));
44 paintingData.lightVector.setY(sinf(azimuth) * cosf(elevation));
53 bool DistantLightSource::setAzimuth(float azimuth)
55 if (m_azimuth == azimuth)
57 m_azimuth = azimuth;
72 ts << "[azimuth=\"" << azimuth() << "\"]";
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
EqualPowerPanner.cpp 52 void EqualPowerPanner::pan(double azimuth, double /*elevation*/, const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess)
74 // Clamp azimuth to allowed range of -180 -> +180.
75 azimuth = max(-180.0, azimuth);
76 azimuth = min(180.0, azimuth);
78 // Alias the azimuth ranges behind us to in front of us:
80 if (azimuth < -90)
81 azimuth = -180 - azimuth;
    [all...]
EqualPowerPanner.h 38 virtual void pan(double azimuth, double elevation, const AudioBus* inputBus, AudioBus* outputBuf, size_t framesToProcess);
HRTFPanner.h 41 virtual void pan(double azimuth, double elevation, const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess);
53 // Given an azimuth angle in the range -180 -> +180, returns the corresponding azimuth index for the database,
55 int calculateDesiredAzimuthIndexAndBlend(double azimuth, double& azimuthBlend);
62 // then azimuth and elevation are dynamically changing.
63 // When the azimuth and elevation are not changing, we simply process with one of the two sets.
65 // Whenever the azimuth or elevation changes, a crossfade is initiated to transition
79 // azimuth/elevation for CrossfadeSelection1.
83 // azimuth/elevation for CrossfadeSelection2.
Panner.h 57 virtual void pan(double azimuth, double elevation, const AudioBus* inputBus, AudioBus* outputBus, size_t framesToProcess) = 0;
HRTFElevation.cpp 97 // Takes advantage of the symmetry and creates a composite version of the two measured versions. For example, we have both azimuth 30 and -30 degrees
99 bool HRTFElevation::calculateSymmetricKernelsForAzimuthElevation(int azimuth, int elevation, float sampleRate, const String& subjectName,
104 bool success = calculateKernelsForAzimuthElevation(azimuth, elevation, sampleRate, subjectName, kernelL1, kernelR1);
109 int symmetricAzimuth = !azimuth ? 0 : 360 - azimuth;
124 bool HRTFElevation::calculateKernelsForAzimuthElevation(int azimuth, int elevation, float sampleRate, const String& subjectName,
127 // Valid values for azimuth are 0 -> 345 in 15 degree increments.
130 bool isAzimuthGood = azimuth >= 0 && azimuth <= 345 && (azimuth / 15) * 15 == azimuth
    [all...]
HRTFElevation.h 44 // HRTFElevation contains all of the HRTFKernels (one left ear and one right ear per azimuth angle) for a particular elevation.
66 // Returns the left and right kernels for the given azimuth index.
70 // Spacing, in degrees, between every azimuth loaded from resource.
76 // Interpolates by this factor to get the total number of azimuths from every azimuth loaded from resource.
82 // Given a specific azimuth and elevation angle, returns the left and right HRTFKernel.
83 // Valid values for azimuth are 0 -> 345 in 15 degree increments.
86 static bool calculateKernelsForAzimuthElevation(int azimuth, int elevation, float sampleRate, const String& subjectName,
89 // Given a specific azimuth and elevation angle, returns the left and right HRTFKernel in kernelL and kernelR.
90 // This method averages the measured response using symmetry of azimuth (for example by averaging the -30.0 and +30.0 azimuth responses)
    [all...]
HRTFPanner.cpp 97 int HRTFPanner::calculateDesiredAzimuthIndexAndBlend(double azimuth, double& azimuthBlend)
99 // Convert the azimuth angle from the range -180 -> +180 into the range 0 -> 360.
100 // The azimuth index may then be calculated from this positive value.
101 if (azimuth < 0)
102 azimuth += 360.0;
110 // Calculate the azimuth index and the blend (0 -> 1) for interpolation.
111 double desiredAzimuthIndexFloat = azimuth / angleBetweenAzimuths;
115 // We don't immediately start using this azimuth index, but instead approach this index from the last index we rendered at.
145 // IRCAM HRTF azimuths values from the loaded database is reversed from the panner's notion of azimuth.
146 double azimuth = -desiredAzimuth local
    [all...]
  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_Direction.h 33 AKFLOAT* azimuth,
AKFS_Direction.c 29 azimuth: Rotaion around Z axis, with positive values
61 AKFLOAT* azimuth /* radian */
80 *azimuth = AKFS_ATAN2(Yh, Xh);
90 AKFLOAT* azimuth,
119 /* calculate azimuth */
122 *azimuth = RAD2DEG(azimuthRad);
126 /* Adjust range of azimuth */
127 if (*azimuth < 0) {
128 *azimuth += 360.0f;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
PannerNode.cpp 116 double azimuth; local
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; local
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 vecto
    [all...]
  /hardware/akm/AK8975_FS/akmdfs/
AKFS_APIs.h 63 AKFLOAT* azimuth,
  /external/chromium_org/third_party/icu/source/i18n/
astro.h 207 * The <i>Azimuth</i> is the geographic direction of the object from the
208 * observer's position, with 0 representing north. The azimuth increases
225 * @param azim The azimuth, measured in radians clockwise from north.
229 : altitude(alt), azimuth(azim) { }
234 * @param azim The azimuth, measured in radians clockwise from north.
239 azimuth = azim;
259 double azimuth; member in class:CalendarAstronomer::Horizon
  /external/icu4c/i18n/
astro.h 207 * The <i>Azimuth</i> is the geographic direction of the object from the
208 * observer's position, with 0 representing north. The azimuth increases
225 * @param azim The azimuth, measured in radians clockwise from north.
229 : altitude(alt), azimuth(azim) { }
234 * @param azim The azimuth, measured in radians clockwise from north.
239 azimuth = azim;
259 double azimuth; member in class:CalendarAstronomer::Horizon
  /frameworks/wilhelm/src/itf/
I3DDoppler.c 43 SLmillidegree azimuth, SLmillidegree elevation, SLmillimeter speed)
49 thiz->mVelocitySpherical.mAzimuth = azimuth;
I3DLocation.c 43 SLmillidegree azimuth, SLmillidegree elevation, SLmillimeter distance)
47 if (!((-360000 <= azimuth) && (azimuth <= 360000) &&
54 thiz->mLocationSpherical.mAzimuth = azimuth;
  /hardware/ti/omap4xxx/camera/
SensorListener.cpp 50 float x = sen_events[i].vector.azimuth;
57 CAMHAL_LOGVB(" azimuth = %f pitch = %f roll = %f",
58 sen_events[i].vector.azimuth,
  /development/ndk/platforms/android-9/include/android/
sensor.h 100 float azimuth; member in struct:ASensorVector::__anon1511::__anon1513
  /frameworks/native/services/sensorservice/
OrientationSensor.cpp 56 outEvent->orientation.azimuth = g.x;
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/android/
sensor.h 100 float azimuth; member in struct:ASensorVector::__anon45899::__anon45901
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/android/
sensor.h 100 float azimuth; member in struct:ASensorVector::__anon46874::__anon46876
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/android/
sensor.h 100 float azimuth; member in struct:ASensorVector::__anon46926::__anon46928

Completed in 1066 milliseconds

1 2 3 4