Lines Matching refs:points
685 // moved control points after the chop. This test should be run in SK_DEBUG
1094 // control points
1110 // control points
1776 path.lineTo(0, 0); // too many points/verbs
2051 SkPoint f1[] = {{0, 0}, {1, 0}, {1, 1}}; // too few points
2374 SkPoint f1[] = {{0, 0}, {1, 0}, {1, 1}}; // too few points
3149 // Max of 10 segments, max 3 points per segment
3445 // Try different starting points for the contour.
3673 // the path isn't "empty" in that it should have verbs and points.
3709 // diagonal colinear points make arc convex
3710 // TODO: one way to keep it concave would be to introduce interpolated on curve points
3711 // between control points and computing the on curve point at scan conversion time
4196 // test conic end points
4217 // test cubic end points
4534 SkPoint points[] =
4554 path.moveTo(points[pointIndex++]);
4557 path.lineTo(points[pointIndex++]);
5212 auto makePath = [](const SkPoint* points, size_t count, bool close) -> SkPath {
5215 index < 2 ? path.moveTo(points[index]) : path.lineTo(points[index]);
5222 auto makePath2 = [](const SkPoint* points, const SkPath::Verb* verbs, size_t count) -> SkPath {
5227 path.moveTo(*points++);
5230 path.lineTo(*points++);
5243 SkPoint points[] = { {10, 10}, {75, 75}, {150, 75}, {150, 150}, {75, 150} };
5244 SkPath path = makePath(points, SK_ARRAY_COUNT(points), false);
5247 compare.setBounds(&points[1], SK_ARRAY_COUNT(points) - 1);
5417 // The first two points, when sent through our fixed-point SkEdge, can walk negative beyond