Lines Matching refs:arcTo
826 arcTo() adds line connecting SkPath last SkPoint to initial arc SkPoint if forceMoveTo
838 SkPath& arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo);
845 If last Path Point does not start Arc, arcTo appends connecting Line to Path.
849 tangents are nearly parallel, arcTo appends Line from last Path Point to (x1, y1).
851 arcTo appends at most one Line and one conic.
852 arcTo implements the functionality of PostScript arct and HTML Canvas arcTo.
865 SkPath& arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius);
872 If last SkPath SkPoint does not start arc, arcTo() appends connecting line to SkPath.
876 tangents are nearly parallel, arcTo() appends line from last SkPath SkPoint to p1.
878 arcTo() appends at most one line and one conic.
879 arcTo() implements the functionality of PostScript arct and HTML Canvas arcTo.
886 SkPath& arcTo(const SkPoint p1, const SkPoint p2, SkScalar radius) {
887 return this->arcTo(p1.fX, p1.fY, p2.fX, p2.fY, radius);
904 Arc sweep is always less than 360 degrees. arcTo() appends line to (x, y) if
905 either radii are zero, or if last SkPath SkPoint equals (x, y). arcTo() scales radii
909 arcTo() appends up to four conic curves.
910 arcTo() implements the functionality of SVG arc, although SVG sweep-flag value
923 SkPath& arcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSize largeArc,
932 Arc sweep is always less than 360 degrees. arcTo() appends line to xy if either
933 radii are zero, or if last SkPath SkPoint equals (xy.fX, xy.fY). arcTo() scales radii r to
937 arcTo() appends up to four conic curves.
938 arcTo() implements the functionality of SVG arc, although SVG sweep-flag value is
949 SkPath& arcTo(const SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, SkPathDirection sweep,
951 return this->arcTo(r.fX, r.fY, xAxisRotate, largeArc, sweep, xy.fX, xy.fY);
961 Arc sweep is always less than 360 degrees. arcTo() appends line to end SkPoint
963 arcTo() scales radii (rx, ry) to fit last SkPath SkPoint and end SkPoint if both are
966 arcTo() appends up to four conic curves.
967 arcTo() implements the functionality of svg arc, although SVG "sweep-flag" value is