DrawBeziers Method
DrawBeziers(Pen, Point[])
Draws a series of Bézier splines from an array of Point structures.
Declaration
public void DrawBeziers(Pen pen, Point[] points)
Parameters
Type | Name | Description |
---|---|---|
Pen | pen | Pen that determines the color, width, and style of the curve. |
Point[] | points | Array of Point structures that represent the points that determine the curve. The number of points in the array should be a multiple of 3 plus 1, such as 4, 7, or 10. |