Home | History | Annotate | Download | only in core

Lines Matching full:moveto

233      *  a moveTo and a lineTo). If so, and line[] is not null, it sets the 2
338 void moveTo(SkScalar x, SkScalar y);
344 void moveTo(const SkPoint& p) {
345 this->moveTo(p.fX, p.fY);
350 same as moveTo().
360 moveTo() call has been made for this contour, the first point is
368 /** Add a line from the last point to the specified point. If no moveTo()
379 point on this contour. If there is no previous point, then a moveTo(0,0)
390 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
401 p1, and ending at p2. If no moveTo() call has been made for this
412 point on this contour. If there is no previous point, then a moveTo(0,0)
427 (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
441 and p2, and ending at p3. If no moveTo() call has been made for this
454 moveTo(0,0) is inserted automatically.
475 of the arc. However, if the path is empty, then we call moveTo() with
683 * this->moveTo(pts[0]);
760 moveTo(x,y) is automatically called.
767 /** Set the last point on the path. If no points have been added, moveTo(p)
794 kClose_Verb, //!< iter.next returns 1 point (contour's moveTo pt)
831 initial moveto for this contour). If next() returned a different
971 moveTo() call has been made for this contour, the first point is
977 last point. If no moveTo() call has been made for this contour, the
983 // if we need to inject a leading moveTo first
985 // SkPath path; path.lineTo(...); <--- need a leading moveTo(0, 0)
986 // SkPath path; ... path.close(); path.lineTo(...) <-- need a moveTo(previous moveTo)