Lines Matching defs:pts
165 SkPoint pts[kNumPtsCubic];
166 SkPatchUtils::GetTopCubic(cubics, pts);
167 matrix->mapPoints(pts, kNumPtsCubic);
168 SkScalar topLength = approx_arc_length(pts, kNumPtsCubic);
170 SkPatchUtils::GetBottomCubic(cubics, pts);
171 matrix->mapPoints(pts, kNumPtsCubic);
172 SkScalar bottomLength = approx_arc_length(pts, kNumPtsCubic);
174 SkPatchUtils::GetLeftCubic(cubics, pts);
175 matrix->mapPoints(pts, kNumPtsCubic);
176 SkScalar leftLength = approx_arc_length(pts, kNumPtsCubic);
178 SkPatchUtils::GetRightCubic(cubics, pts);
179 matrix->mapPoints(pts, kNumPtsCubic);
180 SkScalar rightLength = approx_arc_length(pts, kNumPtsCubic);
293 SkPoint pts[kNumPtsCubic];
294 SkPatchUtils::GetBottomCubic(cubics, pts);
295 FwDCubicEvaluator fBottom(pts);
296 SkPatchUtils::GetTopCubic(cubics, pts);
297 FwDCubicEvaluator fTop(pts);
298 SkPatchUtils::GetLeftCubic(cubics, pts);
299 FwDCubicEvaluator fLeft(pts);
300 SkPatchUtils::GetRightCubic(cubics, pts);
301 FwDCubicEvaluator fRight(pts);