Searched defs:endAngle (Results 1 - 2 of 2) sorted by relevance

/external/webkit/WebCore/platform/graphics/wx/
H A DPathWx.cpp181 void Path::addArc(const FloatPoint& point, float radius, float startAngle, float endAngle, bool clockwise) argument
185 m_path->AddArc(point.x(), point.y(), radius, startAngle, endAngle, clockwise);
/external/webkit/WebCore/platform/graphics/wince/
H A DPlatformPathWince.cpp217 double endAngle = data.m_end - data.m_center; local
220 if (endAngle <= curAngle || startPoint == data.m_end)
221 endAngle += 2 * piDouble;
224 if (endAngle >= curAngle || startPoint == data.m_end)
225 endAngle -= 2 * piDouble;
228 for (curAngle += angleStep; data.m_clockwise ? curAngle < endAngle : curAngle > endAngle; curAngle += angleStep)

Completed in 292 milliseconds