svg_arc_to


Description:

public void svg_arc_to (float rx, float ry, float x_axis_rotation, bool large_arc, bool positive_sweep, 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:

this

a `GskPathBuilder`

rx

X radius

ry

Y radius

x_axis_rotation

the rotation of the ellipsis

large_arc

whether to add the large arc

positive_sweep

whether to sweep in the positive direction

x

the X coordinate of the endpoint

y

the Y coordinate of the endpoint