HomeSort by relevance Sort by last modified time
    Searched full:degrees (Results 201 - 225 of 976) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
math.so 
  /system/media/audio_effects/include/audio_effects/
effect_virtualizer.h 51 // - all angles are expressed in degrees and are relative to the listener,
  /frameworks/av/services/camera/libcameraservice/api1/
CameraClient.cpp     [all...]
  /external/ceres-solver/data/nist/
Nelson.dat 16 variables are time in weeks and temperature in degrees
47 Degrees of Freedom: 125
  /external/chromium-trace/catapult/devil/devil/android/tools/
video_recorder.py 40 rotate: If True, the video will be rotated 90 degrees.
127 help='Rotate video by 90 degrees.')
  /external/skia/gm/
dftext.cpp 37 SkScalar degrees,
40 canvas->rotate(degrees);
  /external/skia/include/c/
sk_canvas.h 62 specified rotation in degrees.
64 SK_API void sk_canvas_rotate_degrees(sk_canvas_t*, float degrees);
  /external/skia/samplecode/
SampleBitmapRect.cpp 45 static SkPoint unit_vec(int degrees) {
46 SkScalar rad = SkDegreesToRadians(SkIntToScalar(degrees));
  /external/vulkan-validation-layers/libs/glm/gtx/
rotate_normalized_axis.inl 42 # pragma message("GLM: rotateNormalizedAxis function taking degrees as parameters is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
86 # pragma message("GLM: rotateNormalizedAxis function taking degrees as parameters is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
  /frameworks/base/docs/html/guide/appendix/
app-intents.jd 86 <tr><td>yaw</td><td>Panorama center-of-view in degrees clockwise from North.<br />
89 <tr><td>pitch</td><td>Panorama center-of-view in degrees from
  /frameworks/base/docs/html/guide/topics/sensors/
sensors_position.jd 159 <td rowspan="3">Degrees</td>
250 <li>Azimuth (degrees of rotation around the z axis). This is the angle between magnetic north
254 <li>Pitch (degrees of rotation around the x axis). This value is positive when the positive z axis
256 rotates toward the negative y axis. The range of values is 180 degrees to -180
257 degrees.</li>
258 <li>Roll (degrees of rotation around the y axis). This value is positive when the positive z axis
260 rotates toward the negative x axis. The range of values is 90 degrees to -90
261 degrees.</li>
  /frameworks/base/location/java/android/location/
Geofence.java 41 * @param latitude latitude in degrees, between -90 and +90 inclusive
42 * @param longitude longitude in degrees, between -180 and +180 inclusive
  /frameworks/base/media/jni/
android_media_MediaMuxer.cpp 149 JNIEnv *env, jclass /* clazz */, jlong nativeObject, jint degrees) {
156 status_t err = muxer->setOrientationHint(degrees);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalMergeAlbum.java 207 public void rotate(int degrees) {
209 set.rotate(degrees);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
Paper.java 81 float degrees = local
85 Matrix.rotateM(mMatrix, 0, degrees, 0, 1, 0);
  /external/vulkan-validation-layers/libs/glm/gtc/
matrix_transform.hpp 92 /// @param angle Rotation angle expressed in radians if GLM_FORCE_RADIANS is define or degrees otherwise.
178 /// @param fovy Expressed in radians if GLM_FORCE_RADIANS is define or degrees otherwise.
193 /// @param fov Expressed in radians if GLM_FORCE_RADIANS is define or degrees otherwise.
210 /// @param fovy Expressed in radians if GLM_FORCE_RADIANS is define or degrees otherwise.
221 /// @param fovy Expressed in radians if GLM_FORCE_RADIANS is define or degrees otherwise.
quaternion.inl 626 # pragma message("GLM: rotate function taking degrees as a parameter is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
653 # pragma message("GLM: roll function returning degrees is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
654 return glm::degrees(atan(T(2) * (q.x * q.y + q.w * q.z), q.w * q.w + q.x * q.x - q.y * q.y - q.z * q.z));
667 # pragma message("GLM: pitch function returning degrees is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
668 return glm::degrees(atan(T(2) * (q.y * q.z + q.w * q.x), q.w * q.w - q.x * q.x - q.y * q.y + q.z * q.z));
681 # pragma message("GLM: yaw function returning degrees is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
682 return glm::degrees(asin(T(-2) * (q.x * q.z - q.w * q.y)));
811 # pragma message("GLM: angle function returning degrees is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.")
812 return glm::degrees(acos(x.w) * T(2));
841 # pragma message("GLM: angleAxis function taking degrees as a parameter is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove thi (…)
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AnyMotionDetector.java 88 /** Threshold angle in degrees beyond which the device is considered moving. */
342 float degrees = Math.abs((float)Math.toDegrees( local
345 ", other = " + other.toString() + ", degrees = " + degrees);
346 return degrees;
  /frameworks/base/graphics/java/android/graphics/
Path.java 446 * @param startAngle Starting angle (in degrees) where the arc begins
447 * @param sweepAngle Sweep angle (in degrees) measured clockwise, treated
464 * @param startAngle Starting angle (in degrees) where the arc begins
465 * @param sweepAngle Sweep angle (in degrees) measured clockwise
478 * @param startAngle Starting angle (in degrees) where the arc begins
479 * @param sweepAngle Sweep angle (in degrees) measured clockwise, treated
587 * @param startAngle Starting angle (in degrees) where the arc begins
588 * @param sweepAngle Sweep angle (in degrees) measured clockwise
597 * @param startAngle Starting angle (in degrees) where the arc begins
598 * @param sweepAngle Sweep angle (in degrees) measured clockwis
    [all...]
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 375 * @param fovy field of view in y direction, in degrees
524 * Rotates matrix m by angle a (in degrees) around the axis (x, y, z).
532 * @param a angle to rotate in degrees
547 * Rotates matrix m in place by angle a (in degrees)
552 * @param a angle to rotate in degrees
567 * Creates a matrix for rotation by angle a (in degrees)
575 * @param a angle to rotate in degrees
642 * @param x angle of rotation, in degrees
643 * @param y angle of rotation, in degrees
644 * @param z angle of rotation, in degrees
    [all...]
  /frameworks/base/services/core/java/com/android/server/policy/
WindowOrientationListener.java 312 * - If the tilt angle is too close to horizontal (near 90 or -90 degrees), do nothing.
331 // We work with all angles in degrees in this class.
367 // If the tilt angle has increased by at least delta degrees within the specified amount
441 // The gap angle in degrees between adjacent orientation angles for hysteresis.
448 // The tilt angle range in degrees for each orientation.
639 // the screen) in a range of [-90, 90] degrees.
640 // -90 degrees: screen horizontal and facing the ground (overhead)
641 // 0 degrees: screen vertical
642 // 90 degrees: screen horizontal and facing the sky (on table)
679 // the +y-axis, increasing clockwise in a range of [0, 360] degrees
    [all...]
  /frameworks/base/media/java/android/media/
MediaRecorder.java 533 * @param degrees the angle to be rotated clockwise in degrees.
534 * The supported angles are 0, 90, 180, and 270 degrees.
538 public void setOrientationHint(int degrees) {
539 if (degrees != 0 &&
540 degrees != 90 &&
541 degrees != 180 &&
542 degrees != 270) {
543 throw new IllegalArgumentException("Unsupported angle: " + degrees);
545 setParameter("video-param-rotation-angle-degrees=" + degrees)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/
CameraFormatsActivity.java 396 int degrees = 0; local
398 case Surface.ROTATION_0: degrees = 0; break;
399 case Surface.ROTATION_90: degrees = 90; break;
400 case Surface.ROTATION_180: degrees = 180; break;
401 case Surface.ROTATION_270: degrees = 270; break;
405 mPreviewRotation = (info.orientation + degrees) % 360;
408 mPreviewRotation = (info.orientation - degrees + 360) % 360;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/video/
CameraVideoActivity.java 654 int degrees = 0; local
656 case Surface.ROTATION_0: degrees = 0; break;
657 case Surface.ROTATION_90: degrees = 90; break;
658 case Surface.ROTATION_180: degrees = 180; break;
659 case Surface.ROTATION_270: degrees = 270; break;
663 mVideoRotation = (info.orientation + degrees) % 360;
666 mVideoRotation = (info.orientation - degrees + 360) % 360;
  /development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/
CardView.java 128 * @param clockwise Specifies whether the horizontal animation is 180 degrees
129 * clockwise or 180 degrees counter clockwise.
272 * Returns a full rotation animator which rotates this card by 360 degrees

Completed in 1188 milliseconds

1 2 3 4 5 6 7 891011>>