Home | History | Annotate | Download | only in core

Lines Matching defs:arcTo

827         arcTo() adds line connecting SkPath last SkPoint to initial arc SkPoint if forceMoveTo
836 void arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo);
849 void arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius);
856 If last SkPath SkPoint does not start arc, arcTo() appends connecting line to SkPath.
860 tangents are nearly parallel, arcTo() appends line from last SkPath SkPoint to p1.
862 arcTo() appends at most one line and one conic.
863 arcTo() implements the functionality of PostScript_Arct and HTML_Canvas_ArcTo.
869 void arcTo(const SkPoint p1, const SkPoint p2, SkScalar radius) {
870 this->arcTo(p1.fX, p1.fY, p2.fX, p2.fY, radius);
887 Arc sweep is always less than 360 degrees. arcTo() appends line to (x, y) if
888 either radii are zero, or if last SkPath SkPoint equals (x, y). arcTo() scales radii
892 arcTo() appends up to four conic curves.
893 arcTo() implements the functionality of svg arc, although SVG "sweep-flag" value
905 void arcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSize largeArc,
913 Arc sweep is always less than 360 degrees. arcTo() appends line to xy if either radii are zero,
914 or if last SkPath SkPoint equals (x, y). arcTo() scales radii r to fit last SkPath SkPoint and
917 arcTo() appends up to four conic curves.
918 arcTo() implements the functionality of svg arc, although SVG "sweep-flag" value is
928 void arcTo(const SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep,
930 this->arcTo(r.fX, r.fY, xAxisRotate, largeArc, sweep, xy.fX, xy.fY);
940 Arc sweep is always less than 360 degrees. arcTo() appends line to end SkPoint
942 arcTo() scales radii (rx, ry) to fit last SkPath SkPoint and end SkPoint if both are
945 arcTo() appends up to four conic curves.
946 arcTo() implements the functionality of svg arc, although SVG "sweep-flag" value is