HomeSort by relevance Sort by last modified time
    Searched full:angle (Results 326 - 350 of 1953) sorted by null

<<11121314151617181920>>

  /external/chromium_org/ppapi/c/
pp_touch_point.h 28 * single touch point, such as position, id, rotation angle, and pressure.
51 * This value represents the angle of rotation in degrees of the elliptical
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceMarker.h 54 AffineTransform markerTransformation(const FloatPoint& origin, float angle, float strokeWidth) const;
59 float angle() const;
SVGTextLayoutEngine.cpp 488 float angle = data.rotate == SVGTextLayoutAttributes::emptyValue() ? 0 : data.rotate; local
490 // Calculate glyph orientation angle.
561 angle = m_textPath.normalAngleAtLength(textPathOffset, ok);
564 // For vertical text on path, the actual angle has to be rotated 90 degrees anti-clockwise, not the orientation angle!
566 angle -= 90;
582 bool shouldStartNewFragment = m_dx || m_dy || m_isVerticalText || m_inPathLayout || angle || angle != lastAngle
603 if (angle)
604 m_currentTextFragment.transform.rotate(angle);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathByteStreamBuilder.cpp 94 void SVGPathByteStreamBuilder::arcTo(float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, const FloatPoint& targetPoint, PathCoordinateMode mode)
100 writeFloat(angle);
SVGPathByteStreamSource.cpp 101 bool SVGPathByteStreamSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint)
105 angle = readFloat();
SVGPathElement.idl 53 createSVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, boolean largeArcFlag, boolean sweepFlag);
55 createSVGPathSegArcRel(float x, float y, float r1, float r2, float angle, boolean largeArcFlag, boolean sweepFlag);
  /external/chromium_org/third_party/angle/src/libGLESv2/
Float16ToFloat32.py 1 # Copyright (c) 2012 The ANGLE Project Authors. All rights reserved.
46 // Copyright (c) 2012 The ANGLE Project Authors. All rights reserved.
  /external/chromium_org/third_party/mesa/src/include/VG/
vgext.h 145 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguDropShadowKHR(VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint shadowColorRGBA);
147 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguBevelKHR(VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint highlightColorRGBA,VGuint shadowColorRGBA);
148 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguGradientGlowKHR(VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint stopsCount,const VGfloat* glowColorRampStops);
149 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguGradientBevelKHR(VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint stopsCount,const VGfloat* bevelColorRampStops);
152 typedef VGUErrorCode (VGU_API_ENTRYP PFNVGUDROPSHADOWKHRPROC) (VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint shadowColorRGBA);
154 typedef VGUErrorCode (VGU_API_ENTRYP PFNVGUBEVELKHRPROC) (VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint highlightColorRGBA,VGuint shadowColorRGBA);
155 typedef VGUErrorCode (VGU_API_ENTRYP PFNVGUGRADIENTGLOWKHRPROC) (VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint stopsCount,const VGfloat* glowColorRampStops);
156 typedef VGUErrorCode (VGU_API_ENTRYP PFNVGUGRADIENTBEVELKHRPROC) (VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint stopsCount,const VGfloat* bevelColorRampStops);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
matrix.h 70 _mesa_Rotatef( GLfloat angle, GLfloat x, GLfloat y, GLfloat z );
73 _mesa_Rotated( GLdouble angle, GLdouble x, GLdouble y, GLdouble z );
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector2f.java 568 * angle between two vectors. It is assumed that both this vector and the
572 * a unit vector to find the angle against
573 * @return the angle in radians.
577 float angle = FastMath.acos(dotProduct); local
578 return angle;
582 * <code>angleBetween</code> returns (in radians) the angle required to
589 * @return the angle in radians.
592 float angle = FastMath.atan2(otherVector.y, otherVector.x) local
594 return angle;
615 * <code>getAngle</code> returns (in radians) the angle represented b
    [all...]
  /external/mesa3d/include/VG/
vgext.h 145 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguDropShadowKHR(VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint shadowColorRGBA);
147 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguBevelKHR(VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint highlightColorRGBA,VGuint shadowColorRGBA);
148 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguGradientGlowKHR(VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint stopsCount,const VGfloat* glowColorRampStops);
149 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguGradientBevelKHR(VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint stopsCount,const VGfloat* bevelColorRampStops);
152 typedef VGUErrorCode (VGU_API_ENTRYP PFNVGUDROPSHADOWKHRPROC) (VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint shadowColorRGBA);
154 typedef VGUErrorCode (VGU_API_ENTRYP PFNVGUBEVELKHRPROC) (VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint highlightColorRGBA,VGuint shadowColorRGBA);
155 typedef VGUErrorCode (VGU_API_ENTRYP PFNVGUGRADIENTGLOWKHRPROC) (VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint stopsCount,const VGfloat* glowColorRampStops);
156 typedef VGUErrorCode (VGU_API_ENTRYP PFNVGUGRADIENTBEVELKHRPROC) (VGImage dst,VGImage src,VGfloat dimX,VGfloat dimY,VGuint iterative,VGfloat strength,VGfloat distance,VGfloat angle,VGbitfield filterFlags,VGbitfield allowedQuality,VGuint stopsCount,const VGfloat* bevelColorRampStops);
  /external/mesa3d/src/mesa/main/
matrix.h 70 _mesa_Rotatef( GLfloat angle, GLfloat x, GLfloat y, GLfloat z );
73 _mesa_Rotated( GLdouble angle, GLdouble x, GLdouble y, GLdouble z );
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
Transform3dActivity.java 87 Matrix matrix, float angle) {
89 camera.rotateY(angle);
  /packages/apps/Browser/src/com/android/browser/view/
PieListView.java 42 public void layout(int anchorX, int anchorY, boolean left, float angle,
44 super.layout(anchorX, anchorY, left, angle, pHeight);
PieStackView.java 60 public void layout(int anchorX, int anchorY, boolean left, float angle,
62 super.layout(anchorX, anchorY, left, angle, pHeight);
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 102 (const float *__y, const float *__x, float *angle, int len ), (__y, __x, angle, len) )
107 if( !(y && x && angle && len >= 0) )
161 angle[i] = z0;
162 angle[i+1] = z1;
163 angle[i+2] = z2;
164 angle[i+3] = z3;
170 angle[i] = cvFastArctan( __y[i], __x[i] );
332 CvMat anglestub, *angle = (CvMat*)anglearr; local
367 if( angle )
572 CvMat anglestub, *angle = (CvMat*)anglearr; local
    [all...]
  /external/skia/tests/
PathOpsAngleTest.cpp 324 SkOpAngle* angle = angles.append(); local
325 angle->set(&seg, ts[0], ts[1]);
327 angle->setID(idx);
329 if (angle->unsortable()) {
331 SkDebugf("%s test[%s]: angle[%d] unsortable\n", __FUNCTION__, test.name, idx);
335 if (angle->unorderable()) {
337 SkDebugf("%s test[%s]: angle[%d] unorderable\n", __FUNCTION__, test.name, idx);
438 // from http://stackoverflow.com/questions/1427422/cheap-algorithm-to-find-measure-of-angle-between-vectors
463 double angle = diamond_angle(y, x);
465 double diff = fabs(angle - rAngle)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 109 * @param angle the angle to rotate the source rectangle in radians
110 * @return the Quad representing the source rectangle rotated by the given angle.
112 public static Quad fromRotatedRect(RectF rect, float angle) {
113 return Quad.fromRect(rect).rotated(angle);
176 * Rotate the quad by the given angle.
180 * @param angle the angle to rotate in radians
183 public Quad rotated(float angle) {
185 float cosa = (float) Math.cos(angle);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/profiles/
130.glsl 3 * 8.1 - Angle and Trigonometry Functions
15 float sin(float angle);
16 vec2 sin(vec2 angle);
17 vec3 sin(vec3 angle);
18 vec4 sin(vec4 angle);
20 float cos(float angle);
21 vec2 cos(vec2 angle);
22 vec3 cos(vec3 angle);
23 vec4 cos(vec4 angle);
25 float tan(float angle);
    [all...]
140.glsl 3 * 8.1 - Angle and Trigonometry Functions
15 float sin(float angle);
16 vec2 sin(vec2 angle);
17 vec3 sin(vec3 angle);
18 vec4 sin(vec4 angle);
20 float cos(float angle);
21 vec2 cos(vec2 angle);
22 vec3 cos(vec3 angle);
23 vec4 cos(vec4 angle);
25 float tan(float angle);
    [all...]
  /external/mesa3d/src/glsl/builtins/profiles/
130.glsl 3 * 8.1 - Angle and Trigonometry Functions
15 float sin(float angle);
16 vec2 sin(vec2 angle);
17 vec3 sin(vec3 angle);
18 vec4 sin(vec4 angle);
20 float cos(float angle);
21 vec2 cos(vec2 angle);
22 vec3 cos(vec3 angle);
23 vec4 cos(vec4 angle);
25 float tan(float angle);
    [all...]
140.glsl 3 * 8.1 - Angle and Trigonometry Functions
15 float sin(float angle);
16 vec2 sin(vec2 angle);
17 vec3 sin(vec3 angle);
18 vec4 sin(vec4 angle);
20 float cos(float angle);
21 vec2 cos(vec2 angle);
22 vec3 cos(vec3 angle);
23 vec4 cos(vec4 angle);
25 float tan(float angle);
    [all...]
  /cts/apps/CtsVerifier/include/colorchecker/
imagetesthandler.h 43 void drawLine(int angle, int radius, const Vec3i &color);
  /development/samples/ApiDemos/res/drawable/
shape_5.xml 19 android:angle="270"/>
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixStack.java 126 public void glRotatef(float angle, float x, float y, float z) {
127 Matrix.setRotateM(mTemp, 0, angle, x, y, z);
132 public void glRotatex(int angle, int x, int y, int z) {
133 glRotatef(angle, fixedToFloat(x), fixedToFloat(y), fixedToFloat(z));

Completed in 384 milliseconds

<<11121314151617181920>>