Lines Matching refs:arcTo
98 arcTo() adds line connecting the builder's last point to initial arc point if forceMoveTo
108 SkPathBuilder& arcTo(const SkRect& oval, SkScalar startAngleDeg, SkScalar sweepAngleDeg,
116 If last SkPath SkPoint does not start arc, arcTo() appends connecting line to SkPath.
120 tangents are nearly parallel, arcTo() appends line from last SkPath SkPoint to p1.
122 arcTo() appends at most one line and one conic.
123 arcTo() implements the functionality of PostScript arct and HTML Canvas arcTo.
130 SkPathBuilder& arcTo(SkPoint p1, SkPoint p2, SkScalar radius);
143 Arc sweep is always less than 360 degrees. arcTo() appends line to xy if either
144 radii are zero, or if last SkPath SkPoint equals (xy.fX, xy.fY). arcTo() scales radii r to
148 arcTo() appends up to four conic curves.
149 arcTo() implements the functionality of SVG arc, although SVG sweep-flag value is
160 SkPathBuilder& arcTo(SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, SkPathDirection sweep,