Lines Matching refs:rx

422         auto rx = r > halfW ? halfW : r;  in _appendRect()  local
424 auto hrx = rx * PATH_KAPPA; in _appendRect()
437 …ts[2] = {x + w, y + h - ry + hry}; points[3] = {x + w - rx + hrx, y + h}; points[4] = {x + w - rx,… in _appendRect()
438 points[5] = {x + rx, y + h}, //lineTo in _appendRect()
439 …points[6] = {x + rx - hrx, y + h}; points[7] = {x, y + h - ry + hry}; points[8] = {x, y + h - ry};… in _appendRect()
441 …points[10] = {x, y + ry - hry}; points[11] = {x + rx - hrx, y}; points[12] = {x + rx, y}; //cubicTo in _appendRect()
442 points[13] = {x + w - rx, y}; //lineTo in _appendRect()
443 …points[14] = {x + w - rx + hrx, y}; points[15] = {x + w, y + ry - hry}; points[16] = {x + w, y + r… in _appendRect()
451 …points[1] = {x + w, y + ry - hry}; points[2] = {x + w - rx + hrx, y}; points[3] = {x + w - rx, y};… in _appendRect()
452 points[4] = {x + rx, y}, //lineTo in _appendRect()
453 … points[5] = {x + rx - hrx, y}; points[6] = {x, y + ry - hry}; points[7] = {x, y + ry}; //cubicTo in _appendRect()
455 …points[9] = {x, y + h - ry + hry}; points[10] = {x + rx - hrx, y + h}; points[11] = {x + rx, y + h… in _appendRect()
456 points[12] = {x + w - rx, y + h}; //lineTo in _appendRect()
457 …points[13] = {x + w - rx + hrx, y + h}; points[14] = {x + w, y + h - ry + hry}; points[15] = {x + … in _appendRect()
497 static void _appendCircle(Shape* shape, float cx, float cy, float rx, float ry, const LottieOffsetM… in _appendCircle() argument
499 if (offsetPath) offsetPath->modifyEllipse(rx, ry); in _appendCircle()
501 if (rx == 0.0f || ry == 0.0f) return; in _appendCircle()
503 auto rxKappa = rx * PATH_KAPPA; in _appendCircle()
517 …points[1] = {cx + rxKappa, cy - ry}; points[2] = {cx + rx, cy - ryKappa}; points[3] = {cx + rx, cy… in _appendCircle()
518 …points[4] = {cx + rx, cy + ryKappa}; points[5] = {cx + rxKappa, cy + ry}; points[6] = {cx, cy + ry… in _appendCircle()
519 …points[7] = {cx - rxKappa, cy + ry}; points[8] = {cx - rx, cy + ryKappa}; points[9] = {cx - rx, cy… in _appendCircle()
520 …points[10] = {cx - rx, cy - ryKappa}; points[11] = {cx - rxKappa, cy - ry}; points[12] = {cx, cy -… in _appendCircle()
523 …points[1] = {cx - rxKappa, cy - ry}; points[2] = {cx - rx, cy - ryKappa}; points[3] = {cx - rx, cy… in _appendCircle()
524 …points[4] = {cx - rx, cy + ryKappa}; points[5] = {cx - rxKappa, cy + ry}; points[6] = {cx, cy + ry… in _appendCircle()
525 …points[7] = {cx + rxKappa, cy + ry}; points[8] = {cx + rx, cy + ryKappa}; points[9] = {cx + rx, cy… in _appendCircle()
526 …points[10] = {cx + rx, cy - ryKappa}; points[11] = {cx + rxKappa, cy - ry}; points[12] = {cx, cy -… in _appendCircle()