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_to

functionality.

After this, x, y will be the new current point.

Parameters

rxX radius
ryY radius
xAxisRotationthe rotation of the ellipsis
largeArcwhether to add the large arc
positiveSweepwhether to sweep in the positive direction
xthe X coordinate of the endpoint
ythe Y coordinate of the endpoint