HomeSort by relevance Sort by last modified time
    Searched refs:hRadius (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 411 float hRadius = w / 2;
422 cairo_arc_negative(cr, x + hRadius, (y + vRadius) * reverseScaleFactor, hRadius, -fa * M_PI/180, -falen * M_PI/180);
448 if (hRadius == vRadius)
449 distance = static_cast<int>((M_PI * hRadius) / 2.0);
451 distance = static_cast<int>((M_PI * sqrtf((hRadius * hRadius + vRadius * vRadius) / 2.0)) / 2.0);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 334 float hRadius = w / 2;
340 CGContextAddArc(context, x + hRadius, (y + vRadius) * reverseScaleFactor, hRadius, start, end, true);
364 if (hRadius == vRadius)
365 distance = static_cast<int>((piFloat * hRadius) / 2.0f);
367 distance = static_cast<int>((piFloat * sqrtf((hRadius * hRadius + vRadius * vRadius) / 2.0f)) / 2.0f);
    [all...]

Completed in 38 milliseconds