HomeSort by relevance Sort by last modified time
    Searched defs:angle (Results 26 - 50 of 290) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/qcom/msm8996/kernel-headers/media/
msm_fd.h 41 __u32 angle; member in struct:msm_fd_face_data
  /hardware/qcom/msm8996/original-kernel-headers/media/
msm_fd.h 33 * @angle: Face angle
40 __u32 angle; member in struct:msm_fd_face_data
  /hardware/qcom/msm8998/kernel-headers/media/
msm_fd.h 41 __u32 angle; member in struct:msm_fd_face_data
  /hardware/qcom/msm8998/original-kernel-headers/media/
msm_fd.h 33 * @angle: Face angle
40 __u32 angle; member in struct:msm_fd_face_data
  /hardware/qcom/msm8x84/kernel-headers/media/
msm_fd.h 40 __u32 angle; member in struct:msm_fd_face_data
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
Point.java 73 * Calculates the angle in radians created by points (a, this, b). If any two of these points are
76 * @return the angle in radians
89 float angle = (float) Math.acos(cos); local
91 angle = 2.0f * (float) Math.PI - angle;
93 return angle;
  /cts/hostsidetests/sustainedperf/shadertoy_android/jni/
shadertoy_renderer.cpp 91 static float angle = 0.0f; local
  /developers/build/prebuilts/gradle/BasicAccessibility/Application/src/main/java/com/example/android/basicaccessibility/
DialView.java 232 Double angle = startAngle + (pos * (Math.PI / 4)); local
233 result[0] = (float) (radius * Math.cos(angle)) + (mWidth / 2);
234 result[1] = (float) (radius * Math.sin(angle)) + (mHeight / 2);
  /developers/samples/android/ui/accessibility/BasicAccessibility/Application/src/main/java/com/example/android/basicaccessibility/
DialView.java 232 Double angle = startAngle + (pos * (Math.PI / 4)); local
233 result[0] = (float) (radius * Math.cos(angle)) + (mWidth / 2);
234 result[1] = (float) (radius * Math.sin(angle)) + (mHeight / 2);
  /development/samples/browseable/BasicAccessibility/src/com.example.android.basicaccessibility/
DialView.java 232 Double angle = startAngle + (pos * (Math.PI / 4)); local
233 result[0] = (float) (radius * Math.cos(angle)) + (mWidth / 2);
234 result[1] = (float) (radius * Math.sin(angle)) + (mHeight / 2);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/
Complex.py 19 # the complex number z for which r == z.radius() and phi == z.angle(fullcircle)
26 # z.angle([fullcircle]) -> angle from positive X axis; fullcircle gives units
27 # z.phi([fullcircle]) == z.angle(fullcircle)
173 def angle(self, fullcircle = twopi): member in class:Complex
176 phi = angle
219 phi = n*self.angle()
  /external/eigen/Eigen/src/Geometry/
AngleAxis.h 19 * \brief Represents a 3D rotation as a rotation angle around an arbitrary 3D axis
73 /** Constructs and initialize the angle-axis rotation from an \a angle in radian
76 * \warning If the \a axis vector is not normalized, then the angle-axis object
80 inline AngleAxis(const Scalar& angle, const MatrixBase<Derived>& axis) : m_axis(axis), m_angle(angle) {}
81 /** Constructs and initialize the angle-axis rotation from a quaternion \a q.
86 /** Constructs and initialize the angle-axis rotation from a 3x3 rotation matrix. */
90 /** \returns the value of the rotation angle in radian */
91 EIGEN_DEVICE_FUNC Scalar angle() const { return m_angle; function in class:Eigen::AngleAxis
93 EIGEN_DEVICE_FUNC Scalar& angle() { return m_angle; } function in class:Eigen::AngleAxis
    [all...]
Rotation2D.h 24 * as a single angle in radian. It provides some additional features such as the automatic
61 /** Construct a 2D counter clock wise rotation from the angle \a a in radian. */
77 /** \returns the rotation angle */
78 EIGEN_DEVICE_FUNC inline Scalar angle() const { return m_angle; } function in class:Eigen::Rotation2D
80 /** \returns a read-write reference to the rotation angle */
81 EIGEN_DEVICE_FUNC inline Scalar& angle() { return m_angle; } function in class:Eigen::Rotation2D
83 /** \returns the rotation angle in [0,2pi] */
89 /** \returns the rotation angle in [-pi,pi] */
117 * In other words, this function extract the rotation angle from the rotation matrix.
149 m_angle = Scalar(other.angle());
    [all...]
  /external/eigen/unsupported/test/
matrix_power.cpp 16 T angle, c, s; local
22 angle = std::pow(T(10), (i-10) / T(5.));
23 c = std::cos(angle);
24 s = std::sin(angle);
27 C = Apow(std::ldexp(angle,1) / T(EIGEN_PI));
37 T angle, ch = std::cosh((T)1); local
44 angle = std::ldexp(static_cast<T>(i-10), -1);
45 ch = std::cosh(angle);
46 ish = std::complex<T>(0, std::sinh(angle));
49 C = Apow(angle);
59 T angle; local
    [all...]
  /external/libxcam/xcore/
surview_fisheye_dewarp.cpp 156 float angle = atan(cam_coord.z / dist2center); local
166 p = p * angle;
  /external/python/cpython2/Demo/classes/
Complex.py 19 # the complex number z for which r == z.radius() and phi == z.angle(fullcircle)
26 # z.angle([fullcircle]) -> angle from positive X axis; fullcircle gives units
27 # z.phi([fullcircle]) == z.angle(fullcircle)
173 def angle(self, fullcircle = twopi): member in class:Complex
176 phi = angle
219 phi = n*self.angle()
  /external/skia/experimental/skottie/
SkottieProperties.cpp 133 auto angle = SkDegreesToRadians(fRotation); local
134 poly.moveTo(pt_on_circle(fPosition, fOuterRadius, angle));
138 poly.lineTo(pt_on_circle(fPosition, fInnerRadius, angle + arc * 0.5f));
140 angle += arc;
141 poly.lineTo(pt_on_circle(fPosition, fOuterRadius, angle));
  /external/skia/gm/
convexpolyeffect.cpp 140 SkScalar angle = 2 * SK_ScalarPI * i / GrConvexPolyEffect::kMaxEdges; variable
142 point.fY = SkScalarSinCos(angle, &point.fX);
polygons.cpp 51 SkScalar angle = 2 * SK_ScalarPI * i / SK_ARRAY_COUNT(p4); variable
52 p4[i].set(20 * SkScalarCos(angle) + 20, 20 * SkScalarSin(angle) + 20);
  /external/skia/src/utils/
SkParsePath.cpp 167 SkScalar angle, largeArc, sweep; local
170 && (data = find_scalar(data, &angle, false, 0))
177 path.arcTo(radii, angle, (SkPath::ArcSize) SkToBool(largeArc),
  /external/skqp/experimental/skottie/
SkottieProperties.cpp 133 auto angle = SkDegreesToRadians(fRotation); local
134 poly.moveTo(pt_on_circle(fPosition, fOuterRadius, angle));
138 poly.lineTo(pt_on_circle(fPosition, fInnerRadius, angle + arc * 0.5f));
140 angle += arc;
141 poly.lineTo(pt_on_circle(fPosition, fOuterRadius, angle));
  /external/skqp/gm/
convexpolyeffect.cpp 140 SkScalar angle = 2 * SK_ScalarPI * i / GrConvexPolyEffect::kMaxEdges; variable
142 point.fY = SkScalarSinCos(angle, &point.fX);
polygons.cpp 51 SkScalar angle = 2 * SK_ScalarPI * i / SK_ARRAY_COUNT(p4); variable
52 p4[i].set(20 * SkScalarCos(angle) + 20, 20 * SkScalarSin(angle) + 20);
  /external/skqp/src/utils/
SkParsePath.cpp 167 SkScalar angle, largeArc, sweep; local
170 && (data = find_scalar(data, &angle, false, 0))
177 path.arcTo(radii, angle, (SkPath::ArcSize) SkToBool(largeArc),
  /external/swiftshader/tests/OGLSimpleCube/
OGLSimpleCube.cpp 43 float angle = 0.1f; variable
44 double theta = angle * PI / 180.0;

Completed in 695 milliseconds

12 3 4 5 6 7 8 91011>>