[C#]
void DrawCurve(Pen pen, Point[] points);
void DrawCurve(Pen pen, Point[] points, double tension);
void DrawCurve(Pen pen, Point[] points, int offset, int count);
void DrawCurve(Pen pen, Point[] points, int offset, int count, double tension);
void DrawCurve(Pen pen, PointF[] points);
void DrawCurve(Pen pen, PointF[] points, double tension);
void DrawCurve(Pen pen, PointF[] points, int offset, int count);
void DrawCurve(Pen pen, PointF[] points, int offset, int count, double tension);
[Visual Basic]
Sub DrawCurve(pen As Pen, points As Point())
Sub DrawCurve(pen As Pen, points As Point(), tension As Double)
Sub DrawCurve(pen As Pen, points As Point(), offset As Integer, count As Integer)
Sub DrawCurve(pen As Pen, points As Point(), offset As Integer, count As Integer, tension As Double)
Sub DrawCurve(pen As Pen, points As PointF())
Sub DrawCurve(pen As Pen, points As PointF(), tension As Double)
Sub DrawCurve(pen As Pen, points As PointF(), offset As Integer, count As Integer)
Sub DrawCurve(pen As Pen, points As PointF(), offset As Integer, count As Integer, tension As Double)
|