[C#]
void DrawClosedCurve(Pen pen, Point[] points);
void DrawClosedCurve(Pen pen, Point[] points, double tension, FillMode fillMode);
void DrawClosedCurve(Pen pen, PointF[] points);
void DrawClosedCurve(Pen pen, PointF[] points, double tension, FillMode fillMode);
[Visual Basic]
Sub DrawClosedCurve(pen As Pen, points As Point())
Sub DrawClosedCurve(pen As Pen, points As Point(), tension As Double, fillMode As FillMode)
Sub DrawClosedCurve(pen As Pen, points As PointF())
Sub DrawClosedCurve(pen As Pen, points As PointF(), tension As Double, fillMode As FillMode)
|