HomeSort by relevance Sort by last modified time
    Searched full:degrees (Results 176 - 200 of 1140) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/DevCamera/src/com/android/devcamera/
BitmapUtility.java 60 * Returns parameter bitmap rotated 90 degrees
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftsynth.h 72 /* Slant an outline glyph to the right by about 12 degrees. */
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
Transition3d.java 23 * rotates the list by 90 degrees on the Y axis and the second half rotates
24 * the picture by 90 degrees on the Y axis. When the first half finishes, the
117 * is rotated 90 degrees and thus invisible.
  /external/opencv3/samples/gpu/
generalized_hough.cpp 44 "{ minAngle | 0 | minimal rotation angle to detect in degrees }"
45 "{ maxAngle | 360 | maximal rotation angle to detect in degrees }"
46 "{ angleStep | 1 | angle step in degrees }"
  /external/skia/src/animator/
SkMatrixParts.cpp 40 SK_MEMBER(degrees, Float)
47 SkRotate::SkRotate() : degrees(0) {
52 fMatrix->rotate(degrees, center);
  /frameworks/base/core/java/android/view/animation/
RotateAnimation.java 167 float degrees = mFromDegrees + ((mToDegrees - mFromDegrees) * interpolatedTime); local
171 t.getMatrix().setRotate(degrees);
173 t.getMatrix().setRotate(degrees, mPivotX * scale, mPivotY * scale);
  /frameworks/base/docs/html/guide/topics/sensors/
sensors_position.jd 170 <td rowspan="3">Degrees</td>
271 <strong>Azimuth (degrees of rotation about the -z axis).</strong> This is
274 degrees; if the top edge faces south, the azimuth is 180 degrees. Similarly,
275 if the top edge faces east, the azimuth is 90 degrees, and if the top edge
276 faces west, the azimuth is 270 degrees.
279 <strong>Pitch (degrees of rotation about the x axis).</strong> This is the
285 the pitch angle to become negative. The range of values is -180 degrees to
286 180 degrees.
289 <strong>Roll (degrees of rotation about the y axis).</strong> This is th
    [all...]
  /external/ImageMagick/MagickCore/
shear.c 201 % defined, while the amount the image is to be deskewed, in degrees is also
579 degrees;
629 degrees=RadiansToDegrees(-atan((double) skew/width/8));
632 " Deskew angle: %g",degrees);
643 (void) FormatLocaleString(angle,MagickPathExtent,"%.20g",degrees);
648 affine_matrix.sx=cos(DegreesToRadians(fmod((double) degrees,360.0)));
649 affine_matrix.rx=sin(DegreesToRadians(fmod((double) degrees,360.0)));
650 affine_matrix.ry=(-sin(DegreesToRadians(fmod((double) degrees,360.0))));
651 affine_matrix.sy=cos(DegreesToRadians(fmod((double) degrees,360.0)));
699 % IntegralRotateImage() rotates the image an integral of 90 degrees. I
576 degrees; local
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
ttest_test.py 36 """Tests the t value and degrees of freedom output of Welch's t-test."""
101 """Tests calculation of estimated degrees of freedom."""
102 # The formula used to estimate degrees of freedom for independent-samples
104 # Welch-Satterthwaite equation gives an estimate of degrees of freedom,
117 """Degrees of freedom can't be calculated if sample size is too small."""
  /hardware/bsp/intel/peripheral/libupm/src/grove/
grove.h 245 * a set of functions to read the absolute pin value, degrees or radians, and another set
271 * Gets absolute raw degrees from the AIO pin
273 * @return Unsigned degrees from the ADC
289 * Gets relative degrees from the AIO pin
291 * @return Signed degrees from the ADC
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
datalogger_outputs.c 60 * Raw (uncompensated) angular velocity (degrees per second) in body frame.
86 * Angular velocity (degrees per second) in body frame.
154 * @param[out] mag_north Heading relative to magnetic north in degrees.
155 * @param[out] true_north Heading relative to true north in degrees.
223 * @param[out] values Temperature in degrees C.
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Matrix3.java 144 * @param degrees the angle in degrees.
146 public Matrix3 setToRotation (float degrees) {
147 return setToRotationRad(MathUtils.degreesToRadians * degrees);
173 public Matrix3 setToRotation (Vector3 axis, float degrees) {
174 return setToRotation(axis, MathUtils.cosDeg(degrees), MathUtils.sinDeg(degrees));
446 * @param degrees The angle in degrees
448 public Matrix3 rotate (float degrees) {
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
PhotoCaptureActivity.java 526 int degrees = 0; local
528 case Surface.ROTATION_0: degrees = 0; break;
529 case Surface.ROTATION_90: degrees = 90; break;
530 case Surface.ROTATION_180: degrees = 180; break;
531 case Surface.ROTATION_270: degrees = 270; break;
535 mJpegOrientation = (info.orientation + degrees) % 360;
538 mJpegOrientation = (info.orientation - degrees + 360) % 360;
  /external/skia/include/core/
SkMatrix.h 83 90 degrees.
232 /** Set the matrix to rotate by the specified number of degrees, with a
236 void setRotate(SkScalar degrees, SkScalar px, SkScalar py);
237 /** Set the matrix to rotate about (0,0) by the specified number of degrees.
239 void setRotate(SkScalar degrees);
279 M' = M * R(degrees, px, py)
281 void preRotate(SkScalar degrees, SkScalar px, SkScalar py);
283 M' = M * R(degrees)
285 void preRotate(SkScalar degrees);
316 M' = R(degrees, px, py) *
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 92 /** Orientation hysteresis amount used in rounding, in degrees. */
141 public static Bitmap rotate(Bitmap b, int degrees) {
142 return rotateAndMirror(b, degrees, false);
149 public static Bitmap rotateAndMirror(Bitmap b, int degrees, boolean mirror) {
150 if ((degrees != 0 || mirror) && b != null) {
156 degrees = (degrees + 360) % 360;
157 if (degrees == 0 || degrees == 180) {
159 } else if (degrees == 90 || degrees == 270)
    [all...]
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
CameraAgent.java 724 * @param degrees The counterclockwise rotation in degrees, relative to the device's natural
727 public void setDisplayOrientation(final int degrees) {
728 setDisplayOrientation(degrees, true);
737 * @param degrees The counterclockwise rotation in degrees, relative to the device's natural
741 public void setDisplayOrientation(final int degrees, final boolean capture) {
747 .obtainMessage(CameraActions.SET_DISPLAY_ORIENTATION, degrees,
756 public void setJpegOrientation(final int degrees) {
762 .obtainMessage(CameraActions.SET_JPEG_ORIENTATION, degrees, 0
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/orientation/
CameraOrientationActivity.java 268 int degrees = mPreviewOrientations.get(mNextPreviewOrientation); local
269 mCamera.setDisplayOrientation(degrees);
498 int degrees = mPreviewOrientations.get(mNextPreviewOrientation);
506 degrees = (360 - degrees) % 360; // compensate the mirror
516 mat.postRotate(degrees);
  /device/google/contexthub/firmware/src/drivers/window_orientation/
window_orientation.c 56 // all time units in usec, angles in degrees
460 // (the plane of the screen) in a range of [-90, 90] degrees.
461 // -90 degrees: screen horizontal and facing the ground (overhead)
462 // 0 degrees: screen vertical
463 // 90 degrees: screen horizontal and facing the sky (on table)
498 // of [0, 360] degrees.
  /external/vulkan-validation-layers/libs/glm/gtc/
matrix_transform.inl 58 # pragma message("GLM: rotate function taking degrees as a parameter is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
99 # pragma message("GLM: rotate_slow function taking degrees as a parameter is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
232 # pragma message("GLM: perspective function taking degrees as a parameter is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
264 # pragma message("GLM: perspectiveFov function taking degrees as a parameter is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
290 # pragma message("GLM: infinitePerspective function taking degrees as a parameter is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
318 # pragma message("GLM: tweakedInfinitePerspective function taking degrees as a parameter is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
quaternion.hpp 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.
  /external/ceres-solver/data/nist/
Hahn1.dat 14 the predictor variable is temperature in degrees
26 1 Predictor (x = temperature, degrees kelvin)
51 Degrees of Freedom: 229
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJTransform.java 74 * Rotate image clockwise by 90 degrees. This transform is imperfect if
80 * Rotate image 180 degrees. This transform is imperfect if there are any
86 * Rotate image counter-clockwise by 90 degrees. This transform is imperfect
  /external/pdfium/public/
fpdfview.h 531 // 1 (rotated 90 degrees clockwise)
532 // 2 (rotated 180 degrees)
533 // 3 (rotated 90 degrees counter-clockwise)
563 // 1 (rotated 90 degrees clockwise)
564 // 2 (rotated 180 degrees)
565 // 3 (rotated 90 degrees counter-clockwise)
607 // 1 (rotated 90 degrees clockwise)
608 // 2 (rotated 180 degrees)
609 // 3 (rotated 90 degrees counter-clockwise)
658 // 1 (rotated 90 degrees clockwise
    [all...]
  /frameworks/base/location/java/android/location/
GpsMeasurement.java     [all...]
  /development/tools/yuv420sp2rgb/
yuv420sp2rgb.c 144 case 1: /* 90 degrees */
147 case 2: /* 180 degrees */
150 case 3: /* 270 degrees */
300 FAILIF(rotate % 90, "Rotation angle must be a multiple of 90 degrees!\n");

Completed in 2147 milliseconds

1 2 3 4 5 6 78 91011>>