AddCurve Method (GraphicsPath)
In This Topic
Adds a spline curve to the current figure. A cardinal spline curve is used because the curve travels through each of the points in the array.
Syntax
'Declaration
Public Sub AddCurve( _
ByVal () As PointF, _
ByVal As Single _
)
public void AddCurve(
PointF[] ,
float
)
Parameters
- points
- An array of PointF structures that represents the points that define the curve.
- tension
- A value that specifies the amount that the curve bends between control points.
See Also