Lines Matching defs:moveTo
271 * a moveTo and a lineTo). If so, and line[] is not null, it sets the 2
355 void moveTo(SkScalar x, SkScalar y);
361 void moveTo(const SkPoint& p) {
362 this->moveTo(p.fX, p.fY);
367 same as moveTo().
377 moveTo() call has been made for this contour, the first point is
385 /** Add a line from the last point to the specified point. If no moveTo()
396 point on this contour. If there is no previous point, then a moveTo(0,0)
407 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
418 p1, and ending at p2. If no moveTo() call has been made for this
429 point on this contour. If there is no previous point, then a moveTo(0,0)
452 (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
466 and p2, and ending at p3. If no moveTo() call has been made for this
479 moveTo(0,0) is inserted automatically.
500 * to the start of the arc. However, if the path is empty, then we call moveTo() with
559 * moveTo(0,0) is inserted automatically.
661 * @param start Initial point of the contour (initial moveTo), expressed as
705 * @param start Initial point of the contour (initial moveTo), expressed
780 * @param start Initial point of the contour (initial moveTo), expressed as
796 * this->moveTo(pts[0]);
889 moveTo(x,y) is automatically called.
896 /** Set the last point on the path. If no points have been added, moveTo(p)
1126 last point. If no moveTo() call has been made for this contour, the
1132 // if we need to inject a leading moveTo first
1134 // SkPath path; path.lineTo(...); <--- need a leading moveTo(0, 0)
1135 // SkPath path; ... path.close(); path.lineTo(...) <-- need a moveTo(previous moveTo)