DrawPathCurveToAbsolute
DrawPathCurveToAbsolute -- draws a cubic Bezier curve from the current point using absolute coordinates
Description
void DrawPathCurveToAbsolute( DrawingWand drw_wnd, float x1, float y1, float x2, float y2, float x, float y )
Draws a cubic Bezier curve from the current point to (x, y) using (x1, y1) as the control point at the beginning of the curve and (x2, y2) as the control point at the end of the curve using absolute coordinates. At the end of the command, the new current point becomes the final (x, y) coordinate pair used in the polybezier.
A description of each parameter follows:
| drw_wnd | A DrawingWand resource |
| x1 | X ordinate of control point for curve beginning |
| y1 | Y ordinate of control point for curve beginning |
| x2 | X ordinate of control point for curve ending |
| y2 | Y ordinate of control point for curve ending |
| x | X ordinate of the end of the curve |
| y | Y ordinate of the end of the curve |