Method
GskPathBuildersvg_arc_to
unstable since: 4.14
Declaration [src]
void
gsk_path_builder_svg_arc_to (
  GskPathBuilder* self,
  float rx,
  float ry,
  float x_axis_rotation,
  gboolean large_arc,
  gboolean positive_sweep,
  float x,
  float y
)
Description [src]
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.
Available since: 4.14
Parameters
- rx
- 
            Type: floatX radius. 
- ry
- 
            Type: floatY radius. 
- x_axis_rotation
- 
            Type: floatThe rotation of the ellipsis. 
- large_arc
- 
            Type: gbooleanWhether to add the large arc. 
- positive_sweep
- 
            Type: gbooleanWhether to sweep in the positive direction. 
- x
- 
            Type: floatThe X coordinate of the endpoint. 
- y
- 
            Type: floatThe Y coordinate of the endpoint.