Name
page:CurveTo -- append Bezier curve to path
Synopsis
status = page:CurveTo(x1, y1, x2, y2, x3, y3)
Function
page:CurveTo() appends a Bezier 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).

Inputs
x1
x coordinate of control point #1
y1
y coordinate of control point #1
x2
x coordinate of control point #2
y2
y coordinate of control point #2
x3
x coordinate of curve destination point
y3
y coordinate of curve destination point
Results
status
status code

Show TOC