PathBuilder.relCubicTo

Adds a cubic Bézier curve from the current point to x3, y3 with x1, y1 and x2, y2 as the control points.

All coordinates are given relative to the current point.

This is the relative version of gsk.path_builder.PathBuilder.cubicTo.

class PathBuilder
void
relCubicTo
(
float x1
,
float y1
,
float x2
,
float y2
,
float x3
,
float y3
)

Parameters

x1 float

x offset of first control point

y1 float

y offset of first control point

x2 float

x offset of second control point

y2 float

y offset of second control point

x3 float

x offset of the end of the curve

y3 float

y offset of the end of the curve