PathStorage

StockSharp.Xaml.Charting.Rendering.HighQualityRasterizer.Agg.VertexSource

Implements: IVertexSource, IVertexDest

Methods

curve3
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
curve3
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
curve3_rel
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.

curve3_rel
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.)