Lines Matching defs:points
15 SkIPoint points[] = { { 3, 1 }, { 4, 2 }, { 5, 1 }, { 7, 3 } };
20 draw_lines(points, SK_ARRAY_COUNT(points), paint);
21 points[1] += points[0] - points[3];
22 points[2] -= points[1] - points[0];
24 draw_lines(points, SK_ARRAY_COUNT(points), paint);