Name
page:CurveTo3 -- append Bezier curve to path
Synopsis
status = page:CurveTo3(x1, y1, x3, y3)
Function
page:CurveTo3() appends a Bezier curve to the current path using two specified points. The point (x1, y1) and the point (x3, y3) are used as the control points for a Bezier curve and current point is moved to the point (x3, y3)

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

Show TOC