QuadraticBezierTo
QuadraticBezierTo(PointF, PointF)
Adds quadratic Bezier curve at the end the path
public void QuadraticBezierTo(PointF point1, PointF point2)
Parameter | Type | Description |
---|
point1 | PointF | Direction point |
point2 | PointF | End point |
See Also
QuadraticBezierTo(float, float, float, float)
Adds quadratic Bezier curve at the end the path
public void QuadraticBezierTo(float x1, float y1, float x2, float y2)
Parameter | Type | Description |
---|
x1 | Single | X coordinate of direction point |
y1 | Single | Y coordinate of direction point |
x2 | Single | X coordinate of end point |
y2 | Single | Y coordinate of end point |
See Also
QuadraticBezierTo(PointF, PointF, uint)
Adds quadratic Bezier curve to the specified place of the path
public void QuadraticBezierTo(PointF point1, PointF point2, uint index)
Parameter | Type | Description |
---|
point1 | PointF | Direction point |
point2 | PointF | End point |
index | UInt32 | Index of segment in PathData |
Exceptions
exception | condition |
---|
ArgumentOutOfRangeException | Segment index is out of PathData range |
See Also
QuadraticBezierTo(float, float, float, float, uint)
Adds quadratic Bezier curve to the specified place of the path
public void QuadraticBezierTo(float x1, float y1, float x2, float y2, uint index)
Parameter | Type | Description |
---|
x1 | Single | X coordinate of direction point |
y1 | Single | Y coordinate of direction point |
x2 | Single | X coordinate of end point |
y2 | Single | Y coordinate of end point |
index | UInt32 | Index of segment in PathData |
Exceptions
exception | condition |
---|
ArgumentOutOfRangeException | Segment index is out of PathData range |
See Also