PathStorage
Implements: IVertexSource, IVertexDest
Methods
public void curve3(double xControl, double yControl, double x, double y)
pathStorage.curve3(xControl, yControl, x, y)
Draws a quadratic Bйzier curve from the current point to (x,y) using (xControl,yControl) as the control point.
- xControl
- yControl
- x
- y
public void curve3(double x, double y)
pathStorage.curve3(x, y)
Draws a quadratic Bйzier curve from the current point to (x,y).The control point is assumed to be the reflection of the control point on the previous command relative to the current point.(If there is no previous command or if the previous command was not a curve, assume the control point is coincident with the current point.)
- x
- y
public void curve3_rel(double dx_ctrl, double dy_ctrl, double dx_to, double dy_to)
pathStorage.curve3_rel(dx_ctrl, dy_ctrl, dx_to, dy_to)
Draws a quadratic Bйzier curve from the current point to (x,y) using (xControl,yControl) as the control point.
public void curve3_rel(double dx_to, double dy_to)
pathStorage.curve3_rel(dx_to, dy_to)
Draws a quadratic Bйzier curve from the current point to (x,y).The control point is assumed to be the reflection of the control point on the previous command relative to the current point.(If there is no previous command or if the previous command was not a curve, assume the control point is coincident with the current point.)