Lines Matching refs:fCenter
18 SkV2 fCenter; member
21 VSphere(SkV2 center, SkScalar radius) : fCenter(center), fRadius(radius) {} in VSphere()
24 return (v - fCenter).length() <= fRadius; in contains()
28 auto v = p - fCenter; in pinLoc()
32 return fCenter + v; in pinLoc()
36 v = (v - fCenter) * (1 / fRadius); in computeUnitV3()
307 canvas->drawCircle(fSphere.fCenter.x, fSphere.fCenter.y, fSphere.fRadius, paint); in onDrawContent()
308 canvas->drawLine(fSphere.fCenter.x, fSphere.fCenter.y - fSphere.fRadius, in onDrawContent()
309 fSphere.fCenter.x, fSphere.fCenter.y + fSphere.fRadius, paint); in onDrawContent()
310 canvas->drawLine(fSphere.fCenter.x - fSphere.fRadius, fSphere.fCenter.y, in onDrawContent()
311 fSphere.fCenter.x + fSphere.fRadius, fSphere.fCenter.y, paint); in onDrawContent()