geomerative
index
 
Name addBezierTo ( )
Examples
None available
Description Use this method to add a new cubic bezier to the subshape. The first point of the bezier will be the last point added to the subshape.
Syntax
addBezierTo(cp1, cp2, end);
addBezierTo(cp1x, cp1y, cp2x, cp2y, endx, endy);
Parameters
float   cp1x, the x coordinate of the first control point
float   cp1y, the y coordinate of the first control point
float   cp2x, the x coordinate of the second control point
float   cp2y, the y coordinate of the second control point
float   endx, the x coordinate of the ending point
float   endy, the y coordinate of the ending point
Returns None
Usage Web & Application
Related