[]
Draw the special Bezier curve on current Graphics
by using the special pen.
public void DrawBeziers(Pen pen, Point[] points)
Type | Name | Description |
---|---|---|
Pen | pen | A Pen indicate the draw-style of Bezier curve |
Point[] | points | An array of Pointstructures that contain the endpoints and control points of the curve(s). This value must be one more than three times the number of curves to be drawn, because each Bzier curve requires two control points and an endpoint, and the initial curve requires an additional starting point. |
DrawBeziers draws cubic Bzier curves by using the endpoints and control points specified by the points
parameter.
The first curve is drawn from the first point to the fourth point by using the second and third points
as control points. Each subsequent curve in the sequence needs exactly three more points: the ending point of
the previous curve is used as the starting point, the next two points in the sequence are control points,
and the third is the ending point.
Any extra points are ignored. To draw a line with more points, divide the data into groups that have less than the maximum number of points and call the function for each group of points. Remember to connect the line segments.
Type | Condition |
---|---|
SystemErrorException |