|
[C#]
void AddClosedCurve(Point[] pts);
void AddClosedCurve(Point[] pts, double tension);
void AddClosedCurve(PointF[] pts);
void AddClosedCurve(PointF[] pts, double tension);
[Visual Basic]
Sub AddClosedCurve(pts As Point())
Sub AddClosedCurve(pts As Point(), tension As Double)
Sub AddClosedCurve(pts As PointF())
Sub AddClosedCurve(pts As PointF(), tension As Double)
|