Lines Matching defs:pts
22 SkPoint pts[4]; // the 4 is number of points
25 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
32 path_stemp.moveTo(pts[0]); // the 0 is first point
35 path_stemp.lineTo(pts[1]); // the 1 is second point
38 path_stemp.quadTo(pts[1], pts[2]); // the 1 and 2 is second and third point
41 path_stemp.cubicTo(pts[1], pts[2], pts[3]); // the 1, 2 and 3 if the second, third and fourth point
44 path_stemp.conicTo(pts[1], pts[2], iter.conicWeight()); // the 1 and 2 is second and third point