Lines Matching full:stopv
1077 SkVector* startV, SkVector* stopV, SkRotationDirection* dir) {
1079 stopV->fY = SkScalarSinCos(SkDegreesToRadians(startAngle + sweepAngle), &stopV->fX);
1089 if (*startV == *stopV) {
1098 stopV->fY = SkScalarSinCos(stopRad, &stopV->fX);
1099 } while (*startV == *stopV);
1307 SkVector startV, stopV;
1309 angles_to_unit_vectors(startAngle, sweepAngle, &startV, &stopV, &dir);
1332 // At this point, we know that the arc is not a lone point, but startV == stopV
1335 if (startV == stopV) {
1351 int count = build_arc_conics(oval, startV, stopV, dir, conics, &singlePt);