Home
last modified time | relevance | path

Searched refs:endAngle (Results 1 – 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/openvg/
DPathOpenVG.cpp305 void Path::addArc(const FloatPoint& center, float radius, float startAngle, float endAngle, bool an… in addArc() argument
310 if (!isfinite(radius) || !isfinite(startAngle) || !isfinite(endAngle)) in addArc()
317 endAngle = fmod((2.0 * piDouble) - endAngle, 2.0 * piDouble); in addArc()
321 if (endAngle <= startAngle) in addArc()
322 endAngle += 2.0 * piDouble; in addArc()
325 ? (endAngle - startAngle) in addArc()
326 : (startAngle - endAngle + (2.0 * piDouble)); in addArc()
343 const VGfloat endX = radius * cos(endAngle) + center.x(); in addArc()
344 const VGfloat endY = -radius * sin(endAngle) + center.y(); in addArc()
/external/webkit/Source/WebCore/platform/graphics/cairo/
DPathCairo.cpp147 void Path::addArc(const FloatPoint& p, float r, float startAngle, float endAngle, bool anticlockwis… in addArc() argument
151 if (!isfinite(r) || !isfinite(startAngle) || !isfinite(endAngle)) in addArc()
155 float sweep = endAngle - startAngle; in addArc()
158 … && ((anticlockwise && (endAngle < startAngle)) || (!anticlockwise && (startAngle < endAngle)))) { in addArc()
164 cairo_arc(cr, p.x(), p.y(), r, endAngle, endAngle); in addArc()
167 cairo_arc_negative(cr, p.x(), p.y(), r, startAngle, endAngle); in addArc()
169 cairo_arc(cr, p.x(), p.y(), r, startAngle, endAngle); in addArc()
/external/chromium/chrome/browser/ui/cocoa/
Ddock_icon.mm105 CGFloat endAngle = 90.0 - 360.0 * progress_;
106 if (endAngle < 0.0)
107 endAngle += 360.0;
113 endAngle:endAngle
Dprofile_menu_button.mm179 endAngle:270
188 endAngle:360
Dhover_close_button.mm95 endAngle:365.0];
/external/webkit/Source/WebCore/platform/graphics/wince/
DPlatformPathWinCE.cpp217 double endAngle = data.m_end - data.m_center; in addArcPoints() local
220 if (endAngle <= curAngle || startPoint == data.m_end) in addArcPoints()
221 endAngle += 2 * piDouble; in addArcPoints()
224 if (endAngle >= curAngle || startPoint == data.m_end) in addArcPoints()
225 endAngle -= 2 * piDouble; in addArcPoints()
228 …for (curAngle += angleStep; data.m_clockwise ? curAngle < endAngle : curAngle > endAngle; curAngle… in addArcPoints()
/external/webkit/Source/WebCore/platform/graphics/wx/
DPathWx.cpp188 void Path::addArc(const FloatPoint& point, float radius, float startAngle, float endAngle, bool clo… in addArc() argument
192 m_path->AddArc(point.x(), point.y(), radius, startAngle, endAngle, clockwise); in addArc()
/external/webkit/Source/WebCore/platform/graphics/
DPath.h136 …void addArc(const FloatPoint&, float radius, float startAngle, float endAngle, bool anticlockwise);
/external/quake/quake/src/QW/scitech/include/
Dmgraph.h1314 void MGLAPI MGL_ellipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
1315 …I MGL_ellipseArcCoord(m_int x,m_int y,m_int xradius,m_int yradius,m_int startAngle,m_int endAngle);
1319 void MGLAPI MGL_fillEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
1320 …L_fillEllipseArcCoord(m_int x,m_int y,m_int xradius,m_int yradius,m_int startAngle,m_int endAngle);
1324 void MGLAPI MGL_ellipseArcEngine(rect_t extentRect,m_int startAngle,m_int endAngle,arc_coords_t *a…
1415 region_t * MGLAPI MGL_rgnEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle,const region_…
1418 region_t * MGLAPI MGL_rgnSolidEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
DMGRAPH.H1314 void MGLAPI MGL_ellipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
1315 …I MGL_ellipseArcCoord(m_int x,m_int y,m_int xradius,m_int yradius,m_int startAngle,m_int endAngle);
1319 void MGLAPI MGL_fillEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
1320 …L_fillEllipseArcCoord(m_int x,m_int y,m_int xradius,m_int yradius,m_int startAngle,m_int endAngle);
1324 void MGLAPI MGL_ellipseArcEngine(rect_t extentRect,m_int startAngle,m_int endAngle,arc_coords_t *a…
1415 region_t * MGLAPI MGL_rgnEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle,const region_…
1418 region_t * MGLAPI MGL_rgnSolidEllipseArc(rect_t extentRect,m_int startAngle,m_int endAngle);
/external/webkit/Source/WebCore/html/canvas/
DCanvasRenderingContext2D.idl74 …void arc(in float x, in float y, in float radius, in float startAngle, in float endAngle, in boole…
/external/webkit/Source/WebCore/
DChangeLog-2010-12-06102147 Canvas: arc() with startAngle == endAngle shouldn't add to the path