Graphics.DrawClosedCurve

DrawClosedCurve(Pen, PointF[], float, FillMode)

Draws a closed cardinal spline defined by an array of PointF structures using a specified tension.

public void DrawClosedCurve(Pen pen, PointF[] points, float tension, FillMode fillmode)
ParameterTypeDescription
penPenPen that determines the color, width, and height of the curve.
pointsPointF[]Array of PointF structures that define the spline.
tensionSingleValue greater than or equal to 0.0F that specifies the tension of the curve.
fillmodeFillModeMember of the FillMode enumeration that determines how the curve is filled. This parameter is required but is ignored.

See Also


DrawClosedCurve(Pen, PointF[])

Draws a closed cardinal spline defined by an array of PointF structures.

public void DrawClosedCurve(Pen pen, PointF[] points)
ParameterTypeDescription
penPenPen that determines the color, width, and height of the curve.
pointsPointF[]Array of PointF structures that define the spline.

See Also


DrawClosedCurve(Pen, Point[], float, FillMode)

Draws a closed cardinal spline defined by an array of Point structures using a specified tension.

public void DrawClosedCurve(Pen pen, Point[] points, float tension, FillMode fillmode)
ParameterTypeDescription
penPenPen that determines the color, width, and height of the curve.
pointsPoint[]Array of Point structures that define the spline.
tensionSingleValue greater than or equal to 0.0F that specifies the tension of the curve.
fillmodeFillModeMember of the FillMode enumeration that determines how the curve is filled. This parameter is required but is ignored.

See Also


DrawClosedCurve(Pen, Point[])

Draws a closed cardinal spline defined by an array of Point structures.

public void DrawClosedCurve(Pen pen, Point[] points)
ParameterTypeDescription
penPenPen that determines the color, width, and height of the curve.
pointsPoint[]Array of Point structures that define the spline.

See Also