HomeSort by relevance Sort by last modified time
    Searched full:radians (Results 26 - 50 of 367) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/LegacyCamera/src/com/android/camera/ui/
ZoomControlWheel.java 174 int radians = (MAX_SLIDER_ANGLE - MIN_SLIDER_ANGLE); local
175 if ((startAngle + radians) > 0) radians = -startAngle;
176 drawArc(canvas, startAngle, radians,
  /external/vulkan-validation-layers/libs/glm/detail/
func_trigonometric.hpp 33 /// Function parameters specified as angle are assumed to be in units of radians.
48 /// Converts degrees to radians and returns the result.
52 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/radians.xml">GLSL radians man page</a>
55 GLM_FUNC_DECL genType radians(genType const & degrees);
57 /// Converts radians to degrees and returns the result.
64 GLM_FUNC_DECL genType degrees(genType const & radians);
  /cts/libs/view/src/com/android/view/
Position.java 58 * @return The angle swept out, in radians within the range {@code [-pi..pi]}. A negative double
81 * @return The angle swept out, in radians within the range {@code [-pi..pi]}.
  /external/vulkan-validation-layers/libs/glm/gtx/
rotate_normalized_axis.hpp 60 /// @param angle Rotation angle expressed in radians if GLM_FORCE_RADIANS is define or degrees otherwise.
77 /// @param angle Angle expressed in radians if GLM_FORCE_RADIANS is define or degrees otherwise.
  /frameworks/base/core/java/android/util/
FloatMath.java 65 * @param angle to compute the cosine of, in radians
76 * @param angle to compute the cosine of, in radians
MathUtils.java 127 public static float radians(float degrees) { method in class:MathUtils
131 public static float degrees(float radians) {
132 return radians * RAD_TO_DEG;
  /external/ceres-solver/data/nist/
Roszman1.dat 15 The argument to the ARCTAN function is in radians.
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
hmc5883l.cxx 37 compass->set_declination(0.2749); // Set your declination from true north in radians
  /hardware/bsp/intel/peripheral/libupm/examples/java/
Hmc5883lSample.java 43 // Set your declination from true north in radians
  /hardware/bsp/intel/peripheral/libupm/src/grove/
groverotary.h 39 * a set of functions to read the absolute pin value, degrees or radians, and another set
grove.h 245 * a set of functions to read the absolute pin value, degrees or radians, and another set
277 * Gets absolute raw radians from the AIO pin
279 * @return Unsigned radians from the ADC
295 * Gets relative radians from the AIO pin
297 * @return Signed radians from the ADC
  /device/google/contexthub/firmware/external/arm/
arm_cos_f32.c 53 * The input to the floating-point version is in radians while the
89 * @param[in] x input value in radians.
102 /* input x is in radians */
arm_sin_f32.c 54 * The input to the floating-point version is in radians while the
90 * @param[in] x input value in radians.
103 /* input x is in radians */
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
PieRenderer.java 202 double radians = deg * Math.PI / 180F; local
203 double x = rad * Math.cos(radians);
204 double y = rad * Math.sin(radians);
  /external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_pca/
introduction_to_pca.cpp 25 angle = atan2( (double) p.y - q.y, (double) p.x - q.x ); // angle in radians
27 // double degrees = angle * 180 / CV_PI; // convert radians to degrees (0-180 range)
88 double angle = atan2(eigen_vecs[0].y, eigen_vecs[0].x); // orientation in radians
  /cts/tests/openglperf2/jni/graphics/
Matrix.cpp 96 void Matrix::rotate(float radians, float x, float y, float z) {
97 Matrix* m = newRotate(radians, x, y, z);
245 Matrix* Matrix::newRotate(float radians, float x, float y, float z) {
256 float s = (float) sinf(radians);
257 float c = (float) cosf(radians);
  /frameworks/rs/api/
rs_math.spec 175 Returns the inverse cosine, in radians.
198 Returns the inverse hyperbolic cosine, in radians.
221 Returns the inverse cosine in radians, divided by pi.
246 Returns the inverse sine, in radians.
269 Returns the inverse hyperbolic sine, in radians.
292 Returns the inverse sine in radians, divided by pi.
317 Returns the inverse tangent, in radians.
341 Returns the inverse tangent of <code>(numerator / denominator)</code>, in radians.
366 Returns the inverse tangent of <code>(numerator / denominator)</code>, in radians, divided by pi.
392 Returns the inverse hyperbolic tangent, in radians
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtc/
quaternion.hpp 94 /// Build a quaternion from euler angles (pitch, yaw, roll), in radians.
250 /// @param angle Angle expressed in radians if GLM_FORCE_RADIANS is define or degrees otherwise.
261 /// The result is expressed in radians if GLM_FORCE_RADIANS is defined or degrees otherwise.
268 /// Returns roll value of euler angles expressed in radians if GLM_FORCE_RADIANS is defined or degrees otherwise.
274 /// Returns pitch value of euler angles expressed in radians if GLM_FORCE_RADIANS is defined or degrees otherwise.
280 /// Returns yaw value of euler angles expressed in radians if GLM_FORCE_RADIANS is defined or degrees otherwise.
329 /// @param angle Angle expressed in radians if GLM_FORCE_RADIANS is define or degrees otherwise.
matrix_transform.inl 59 T a = radians(angle);
100 T const a = radians(angle);
233 valType const rad = glm::radians(fovy);
265 valType rad = glm::radians(fov);
291 T const range = tan(radians(fovy / T(2))) * zNear;
319 T range = tan(radians(fovy / T(2))) * zNear;
  /cts/tests/openglperf2/test/
MatrixTest.cpp 217 float radians = 45.0f * (M_PI / 180.0f); local
218 float sin = sinf(radians);
219 float cos = cosf(radians);
  /frameworks/base/graphics/java/android/graphics/
ColorMatrix.java 146 double radians = degrees * Math.PI / 180d; local
147 float cosine = (float) Math.cos(radians);
148 float sine = (float) Math.sin(radians);
  /external/eigen/bench/btl/data/
gnuplot_common_settings.hh 18 set angles radians
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
hmc5883l.js 32 // Set your declination from true north in radians
  /prebuilts/go/darwin-x86/src/math/
sincos.go 46 j &= 7 // octant modulo 2Pi radians (360 degrees)
  /prebuilts/go/linux-x86/src/math/
sincos.go 46 j &= 7 // octant modulo 2Pi radians (360 degrees)

Completed in 490 milliseconds

12 3 4 5 6 7 8 91011>>