Lines Matching refs:stopV
861 SkVector* startV, SkVector* stopV, SkRotationDirection* dir) { in angles_to_unit_vectors() argument
867 stopV->fY = SkScalarSinSnapToZero(stopRad); in angles_to_unit_vectors()
868 stopV->fX = SkScalarCosSnapToZero(stopRad); in angles_to_unit_vectors()
878 if (*startV == *stopV) { in angles_to_unit_vectors()
886 stopV->fY = SkScalarSinSnapToZero(stopRad); in angles_to_unit_vectors()
887 stopV->fX = SkScalarCosSnapToZero(stopRad); in angles_to_unit_vectors()
888 } while (*startV == *stopV); in angles_to_unit_vectors()
1098 SkVector startV, stopV; in arcTo() local
1100 angles_to_unit_vectors(startAngle, sweepAngle, &startV, &stopV, &dir); in arcTo()
1121 if (startV == stopV) { in arcTo()
1135 int count = build_arc_conics(oval, startV, stopV, dir, conics, &singlePt); in arcTo()