/external/skia/include/utils/ |
SkMatrix44.h | 333 SkMScalar degrees) { 334 this->setRotateAbout(x, y, z, degrees * SK_MScalarPI / 180); 418 degrees into a perpendicular plane collapses a square to a line, but
|
/external/skia/src/core/ |
SkMatrix.cpp | 485 void SkMatrix::setRotate(SkScalar degrees, SkScalar px, SkScalar py) { 487 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV); 491 void SkMatrix::setRotate(SkScalar degrees) { 493 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV); 497 void SkMatrix::preRotate(SkScalar degrees, SkScalar px, SkScalar py) { 499 m.setRotate(degrees, px, py); 503 void SkMatrix::preRotate(SkScalar degrees) { 505 m.setRotate(degrees); 509 void SkMatrix::postRotate(SkScalar degrees, SkScalar px, SkScalar py) { 511 m.setRotate(degrees, px, py) [all...] |
/hardware/ti/omap4-aah/camera/ |
Encoder_libjpeg.cpp | 56 // degrees, exif_orientation 260 const char* ExifElementsTable::degreesToExifOrientation(unsigned int degrees) { 262 if (degrees == degress_to_exif_lut[i].integer) {
|
/hardware/ti/omap4xxx/camera/ |
Encoder_libjpeg.cpp | 56 // degrees, exif_orientation 203 const char* ExifElementsTable::degreesToExifOrientation(unsigned int degrees) { 205 if (degrees == degress_to_exif_lut[i].integer) {
|
/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/ |
TaskCompressImageToJpeg.java | 86 Rect crop, int degrees) { 87 return JpegUtilNative.compressJpegFromYUV420Image(img, outBuf, quality, crop, degrees); 431 * @param orientation the rotation to apply, in degrees.
|
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
IndicatorControlWheel.java | 398 double degrees = CLOSE_ICON_DEFAULT_DEGREES; local 403 mChildRadians[startIndex + i] = Math.toRadians(degrees); 404 degrees += sectorDegrees;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/ |
TTest.java | 463 * equal and it uses approximated degrees of freedom computed from the 466 * to the degrees of freedom is used, 505 * minus 2 is used as the degrees of freedom.</p> 542 * t-statistic. Degrees of freedom are approximated using the 600 * sizes minus 2 is used as the degrees of freedom.</p> 650 * equal and it uses approximated degrees of freedom computed from the 691 * the degrees of freedom.</p> [all...] |
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/ |
MathUtils.java | 63 * Degrees to radians conversion factor 68 * Radians to degrees conversion factor
|
/external/opencv3/doc/tutorials/core/basic_geometric_drawing/ |
basic_geometric_drawing.markdown | 146 - The ellipse is rotated **angle** degrees 147 - The ellipse extends an arc between **0** and **360** degrees
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowLocation.java | 400 * Returns the approximate initial bearing in degrees East of true 407 * @return the initial bearing in degrees
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
simd_quat.hpp | 300 /// @param angle Angle expressed in radians if GLM_FORCE_RADIANS is define or degrees otherwise. 310 /// @param angle Angle expressed in radians if GLM_FORCE_RADIANS is define or degrees otherwise.
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
rtt.h | 248 long latitude; // latitude in degrees * 2^25 , 2's complement 249 long longitude; // latitude in degrees * 2^25 , 2's complement
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
DataManager.java | 256 public void rotate(Path path, int degrees) { 257 getMediaObject(path).rotate(degrees);
|
LocalImage.java | 276 public void rotate(int degrees) { 280 int rotation = (this.rotation + degrees) % 360;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
QuickDraw_Graphics_Suite.py | 22 """arc angle - the angle of the arc in degrees """ 54 """start angle - the angle that defines the start of the arc, in degrees """
|
/prebuilts/misc/darwin-x86_64/sdl2_ttf/include/SDL2/ |
SDL_ttf.h | 179 while other pixels have varying degrees of the foreground color. 191 while other pixels have varying degrees of the foreground color.
|
/prebuilts/misc/windows/sdl2_ttf/i686-w64-mingw32/include/SDL2/ |
SDL_ttf.h | 179 while other pixels have varying degrees of the foreground color. 191 while other pixels have varying degrees of the foreground color.
|
/prebuilts/misc/windows/sdl2_ttf/x86_64-w64-mingw32/include/SDL2/ |
SDL_ttf.h | 179 while other pixels have varying degrees of the foreground color. 191 while other pixels have varying degrees of the foreground color.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
QuickDraw_Graphics_Suite.py | 22 """arc angle - the angle of the arc in degrees """ 54 """start angle - the angle that defines the start of the arc, in degrees """
|
/frameworks/base/graphics/java/android/graphics/ |
Canvas.java | 588 * @param degrees The amount to rotate, in degrees 590 public void rotate(float degrees) { 591 native_rotate(mNativeCanvasWrapper, degrees); 597 * @param degrees The amount to rotate, in degrees 601 public final void rotate(float degrees, float px, float py) { 603 rotate(degrees); [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
GyroscopeTestActivity.java | 38 * if the values seem to high and may be degrees.
|
RotationVectorTestActivity.java | 56 * Defines the thresholds for each rotation vector in degrees.
|
/cts/tests/tests/hardware/src/android/hardware/cts/ |
SensorParameterRangeTest.java | 45 private static final double GYRO_MAX_RANGE = 1000/57.295 - 1.0; // 1000 degrees per sec minus a slop
|
/device/generic/goldfish/camera/fake-pipeline2/ |
Scene.h | 131 * Constants for scene definition. These are various degrees of approximate.
|
/external/ImageMagick/scripts/ |
xsnap | 190 -from 0 -to 360 -tickinterval 45 -variable snap(degrees) 480 if {$snap(degrees)} { 481 set command [concat $command -rotate $snap(degrees)] 577 set snap(degrees) 0
|