Lines Matching refs:nextV
289 SkVector nextV;
291 nextV = outerStep.mapVector(curV.fX, curV.fY);
295 SkPoint nextTop = SkPoint::Make(o.fX + outerRadius * nextV.fX,
296 o.fY + outerRadius * nextV.fY);
299 add_arc(&p, top, curV, nextTop, nextV, circles, true);
301 nextV = innerStep.mapVector(curV.fX, curV.fY);
305 SkPoint nextBot = SkPoint::Make(o.fX + innerRadius * nextV.fX,
306 o.fY + innerRadius * nextV.fY);
309 add_arc(&p, bot, curV, nextBot, nextV, nullptr, false);
312 curV = nextV;