AddBezier Method
AddBezier(PointF, PointF, PointF)
Creates a cubic Bezier curve between the current point and the specified end point.
Declaration
void AddBezier(PointF p1, PointF p2, PointF endPoint)
Sub AddBezier(p1 As PointF, p2 As PointF, endPoint As PointF)
Parameters
Type |
Name |
Description |
PointF |
p1 |
The first control point for the Bezier segment.
|
PointF |
p2 |
The second control point for the Bezier segment.
|
PointF |
endPoint |
The end point for the Bezier segment.
|