DrawPathCurveToQuadraticBezierRelative
DrawPathCurveToQuadraticBezierRelative -- draws a quadratic Bezier curve from the current point using relative coordinates
Description
void DrawPathCurveToQuadraticBezierRelative( DrawingWand drw_wnd, float x1, float y1, float x, float y )
Draws a quadratic Bezier curve from the current point to (x, y) using (x1, y1) as the control point using relative 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 the control point |
| y1 | Y ordinate of the control point |
| x | X ordinate of final point |
| y | Y ordinate of final point |