HomeSort by relevance Sort by last modified time
    Searched refs:polar (Results 1 - 16 of 16) sorted by null

  /external/vulkan-validation-layers/libs/glm/gtx/
polar_coordinates.hpp 33 /// @brief Conversion from Euclidean space to polar space and revert.
53 /// Convert Euclidean to Polar coordinates, x is the xz distance, y, the latitude and z the longitude.
57 GLM_FUNC_DECL detail::tvec3<T, P> polar(
60 /// Convert Polar to Euclidean coordinates.
65 detail::tvec2<T, P> const & polar);
  /external/libcxx/test/std/numerics/complex.number/complex.value.ops/
polar.pass.cpp 14 // polar(const T& rho, const T& theta = 0);
25 assert(std::polar(rho) == x);
32 assert(std::polar(rho, theta) == x);
54 std::complex<double> z = std::polar(r, theta);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.value.ops/
polar.pass.cpp 14 // polar(const T& rho, const T& theta = 0);
25 assert(std::polar(rho) == x);
32 assert(std::polar(rho, theta) == x);
54 std::complex<double> z = std::polar(r, theta);
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
PieRenderer.java 413 PointF polar = getPolar(x, y, !(mTapMode)); local
419 PieItem item = findItem(polar);
433 item = findItem(polar);
457 if (polar.y < mRadius) {
465 PieItem item = findItem(polar);
559 * @param polar x: angle, y: dist
562 private PieItem findItem(PointF polar) {
566 if (inside(polar, item)) {
573 private boolean inside(PointF polar, PieItem item) {
574 return (item.getInnerRadius() < polar.y
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_cmath.py 5 from cmath import phase, polar, rect, pi namespace
293 """Wrapped version of polar that returns a complex number instead of
295 return complex(*polar(z))
302 elif fn == 'polar':
360 self.assertCISEqual(polar(0), (0., 0.))
361 self.assertCISEqual(polar(1.), (1., 0.))
362 self.assertCISEqual(polar(-1.), (1., pi))
363 self.assertCISEqual(polar(1j), (1., pi/2))
364 self.assertCISEqual(polar(-1j), (1., -pi/2))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_cmath.py 5 from cmath import phase, polar, rect, pi namespace
293 """Wrapped version of polar that returns a complex number instead of
295 return complex(*polar(z))
302 elif fn == 'polar':
360 self.assertCISEqual(polar(0), (0., 0.))
361 self.assertCISEqual(polar(1.), (1., 0.))
362 self.assertCISEqual(polar(-1.), (1., pi))
363 self.assertCISEqual(polar(1j), (1., pi/2))
364 self.assertCISEqual(polar(-1j), (1., -pi/2))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cmath.py 5 from cmath import phase, polar, rect, pi namespace
293 """Wrapped version of polar that returns a complex number instead of
295 return complex(*polar(z))
302 elif fn == 'polar':
360 self.assertCISEqual(polar(0), (0., 0.))
361 self.assertCISEqual(polar(1.), (1., 0.))
362 self.assertCISEqual(polar(-1.), (1., pi))
363 self.assertCISEqual(polar(1j), (1., pi/2))
364 self.assertCISEqual(polar(-1j), (1., -pi/2))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cmath.py 5 from cmath import phase, polar, rect, pi namespace
293 """Wrapped version of polar that returns a complex number instead of
295 return complex(*polar(z))
302 elif fn == 'polar':
360 self.assertCISEqual(polar(0), (0., 0.))
361 self.assertCISEqual(polar(1.), (1., 0.))
362 self.assertCISEqual(polar(-1.), (1., pi))
363 self.assertCISEqual(polar(1j), (1., pi/2))
364 self.assertCISEqual(polar(-1j), (1., -pi/2))
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_complex.h 749 complex<_Tp> _STLP_CALL polar(const _Tp& __rho) function
753 complex<_Tp> _STLP_CALL polar(const _Tp& __rho, const _Tp& __phi);
764 _STLP_DECLSPEC complex<float> _STLP_CALL polar(const float& __rho, const float& __phi);
766 _STLP_DECLSPEC complex<double> _STLP_CALL polar(const double& __rho, const double& __phi);
777 complex<_Tp> _STLP_CALL polar(const _Tp& __rho, const _Tp& __phi) { function
778 complex<double> __tmp = polar(double(__rho), double(__phi));
788 _STLP_DECLSPEC complex<long double> _STLP_CALL polar(const long double&, const long double&);
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_complex.h 749 complex<_Tp> _STLP_CALL polar(const _Tp& __rho) function
753 complex<_Tp> _STLP_CALL polar(const _Tp& __rho, const _Tp& __phi);
764 _STLP_DECLSPEC complex<float> _STLP_CALL polar(const float& __rho, const float& __phi);
766 _STLP_DECLSPEC complex<double> _STLP_CALL polar(const double& __rho, const double& __phi);
777 complex<_Tp> _STLP_CALL polar(const _Tp& __rho, const _Tp& __phi) { function
778 complex<double> __tmp = polar(double(__rho), double(__phi));
788 _STLP_DECLSPEC complex<long double> _STLP_CALL polar(const long double&, const long double&);
  /ndk/sources/cxx-stl/stlport/src/
complex.cpp 68 // Construct a complex number from polar representation
70 _STLP_DECLSPEC complex<float> _STLP_CALL polar(const float& __rho, const float& __phi) function
73 _STLP_DECLSPEC complex<double> _STLP_CALL polar(const double& __rho, const double& __phi) function
78 _STLP_DECLSPEC complex<long double> _STLP_CALL polar(const long double& __rho, const long double& __phi) function
  /external/libvorbis/doc/
01-introduction.tex 423 polar representation (where one vector is magnitude and the second
04-codec.tex 204 \item if set, square polar channel mapping is in use:
  /external/v8/benchmarks/
earley-boyer.js 474 // LIMITATION: make-rectangular, make-polar, real-part, imag-part, magnitude, angle
    [all...]
  /ndk/tests/device/test-libc++-shared-full/jni/
Android.mk     [all...]
  /ndk/tests/device/test-libc++-static-full/jni/
Android.mk     [all...]

Completed in 1563 milliseconds