Lines Matching refs:pts
283 const SkPoint* pts = SkPathPriv::PointData(fPath);
286 if (fabs(x - pts[i].x()) < fuzz && fabsf(y - pts[i].y()) < fuzz) {
301 for (auto [verb, pts, _] : SkPathPriv::Iterate(path)) {
304 path_.moveTo(pts[0]);
307 path_.lineTo(pts[1]);
310 path_.quadTo(pts[1], pts[2]);
313 path_.cubicTo(pts[1], pts[2], pts[3]);
316 path_.conicTo(pts[1], pts[2], (w != 1) ? w : .99f);