Page.curveTo3

Appends a Bézier curve to the current path using two spesified points.

The point (x1, y1) and the point (x3, y3) are used as the control points for a Bézier curve and current point is moved to the point (x3, y3)

class Page
curveTo3
(
float x1
,
float y1
,
float x3
,
float y3
)

Parameters

x1 float

The control points for a Bézier curve.

y1 float

The control points for a Bézier curve.

x3 float

The control points for a Bézier curve.

y3 float

The control points for a Bézier curve.

Graphics Mode
Before and after
GMode.pathObject

Meta