PathBuilder.svgArcTo
void svgArcTo(float rx, float ry, float xAxisRotation, bool largeArc, bool positiveSweep, float x, float y)Implements arc-to according to the SVG spec.
A convenience function that implements the
SVG arc_tofunctionality.
After this, x, y will be the new current point.
Parameters
rx | X radius |
ry | Y radius |
xAxisRotation | the rotation of the ellipsis |
largeArc | whether to add the large arc |
positiveSweep | whether to sweep in the positive direction |
x | the X coordinate of the endpoint |
y | the Y coordinate of the endpoint |