Page.curveTo2

Appends a Bézier curve to the current path using the current point and (x2, y2) and (x3, y3) as control points. Then, the current point is set to (x3, y3).

class Page
curveTo2
(
float x2
,
float y2
,
float x3
,
float y3
)

Parameters

x2 float

Control points for Bézier curve, along with current point.

y2 float

Control points for Bézier curve, along with current point.

x3 float

Control points for Bézier curve, along with current point.

y3 float

Control points for Bézier curve, along with current point.

Graphics Mode
Before and after
GMode.pathObject

Meta