Search
Path.bezierTo Method
See Also
 





Draws a cubic bezier curve.

Namespace: MindFusion.Drawing
File: Path.js

 Syntax

JavaScript  Copy Code

function bezierTo (x1, y1, x2, y2, x3, y3)

 Parameters

x1

Number. The x-coordinate of the first bezier control point.

y1

Number. The y-coordinate of the first bezier control point.

x2

Number. The x-coordinate of the second bezier control point.

y2

Number. The y-coordinate of the second bezier control point.

x3

Number. The x-coordinate of the ending point.

y3

Number. The y-coordinate of the ending point.

 See Also