Lines Matching full:moveto
218 * a moveTo and a lineTo). If so, and line[] is not null, it sets the 2
310 void moveTo(SkScalar x, SkScalar y);
316 void moveTo(const SkPoint& p) {
317 this->moveTo(p.fX, p.fY);
322 same as moveTo().
332 moveTo() call has been made for this contour, the first point is
340 /** Add a line from the last point to the specified point. If no moveTo()
351 point on this contour. If there is no previous point, then a moveTo(0,0)
362 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
373 p1, and ending at p2. If no moveTo() call has been made for this
384 point on this contour. If there is no previous point, then a moveTo(0,0)
407 (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
421 and p2, and ending at p3. If no moveTo() call has been made for this
434 moveTo(0,0) is inserted automatically.
455 of the arc. However, if the path is empty, then we call moveTo() with
695 * this->moveTo(pts[0]);
788 moveTo(x,y) is automatically called.
795 /** Set the last point on the path. If no points have been added, moveTo(p)
824 kClose_Verb, //!< iter.next returns 1 point (contour's moveTo pt)
867 initial moveto for this contour). If next() returned a different
1006 last point. If no moveTo() call has been made for this contour, the
1012 // if we need to inject a leading moveTo first
1014 // SkPath path; path.lineTo(...); <--- need a leading moveTo(0, 0)
1015 // SkPath path; ... path.close(); path.lineTo(...) <-- need a moveTo(previous moveTo)