Page.curveTo

Appends a Bézier curve to the current path using the control points (x1, y1) and (x2, y2) and (x3, y3), then sets the current point to (x3, y3).

class Page
curveTo
(
float x1
,
float y1
,
float x2
,
float y2
,
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.

x2 float

The control points for a Bézier curve.

y2 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