CubicBezierTo
CubicBezierTo(PointF, PointF, PointF)
Adds cubic Bezier curve at the end the path
public void CubicBezierTo(PointF point1, PointF point2, PointF point3)
Parameter | Type | Description |
---|
point1 | PointF | First direction point |
point2 | PointF | Second direction point |
point3 | PointF | End point |
See Also
CubicBezierTo(float, float, float, float, float, float)
Adds cubic Bezier curve at the end the path
public void CubicBezierTo(float x1, float y1, float x2, float y2, float x3, float y3)
Parameter | Type | Description |
---|
x1 | Single | X coordinate of first direction point |
y1 | Single | Y coordinate of first direction point |
x2 | Single | X coordinate of second direction point |
y2 | Single | Y coordinate of second direction point |
x3 | Single | X coordinate of end point |
y3 | Single | Y coordinate of end point |
See Also
CubicBezierTo(PointF, PointF, PointF, uint)
Adds cubic Bezier curve to the specified place of the path
public void CubicBezierTo(PointF point1, PointF point2, PointF point3, uint index)
Parameter | Type | Description |
---|
point1 | PointF | First direction point |
point2 | PointF | Second direction point |
point3 | PointF | End point |
index | UInt32 | Index of segment in PathData |
Exceptions
exception | condition |
---|
ArgumentOutOfRangeException | Segment index is out of PathData range |
See Also
CubicBezierTo(float, float, float, float, float, float, uint)
Adds cubic Bezier curve to the specified place of the path
public void CubicBezierTo(float x1, float y1, float x2, float y2, float x3, float y3, uint index)
Parameter | Type | Description |
---|
x1 | Single | X coordinate of first direction point |
y1 | Single | Y coordinate of first direction point |
x2 | Single | X coordinate of second direction point |
y2 | Single | Y coordinate of second direction point |
x3 | Single | X coordinate of end point |
y3 | 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