PDF Plugin for Xojo

Page.CurveTo3 Method

Appends a Bézier 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 Bézier curve and current point is moved to the point (x3, y3)

CurveTo3(
   x1 as Single,
   y1 as Single,
   x3 as Single,
   y3 as Single)

Parameters

x1
First control point (x coord)
y1
First control point (y coord)
x3
Third control point (x coord) (there is no 2nd point)
y3
Third control point (y coord) (there is no 2nd point)

Remarks

See Also

Page Class