DrawClosedCurve()

Graphics::DrawClosedCurve(const SharedPtr<Pen>&, const ArrayPtr<Point>&, float, Drawing2D::FillMode) method

Draws a closed spline using the specified pen.

void System::Drawing::Graphics::DrawClosedCurve(const SharedPtr<Pen> &pen, const ArrayPtr<Point> &points, float tension=0.5f, Drawing2D::FillMode fillmode=Drawing2D::FillMode::Alternate)

Arguments

ParameterTypeDescription
penconst SharedPtr<Pen>&A pen to use when drawing the spline
pointsconst ArrayPtr<Point>&Array of points that determines the spline
tensionfloatValue that specifies the tension of the spline
fillmodeDrawing2D::FillModeIGNORED

Graphics::DrawClosedCurve(const SharedPtr<Pen>&, const ArrayPtr<PointF>&, float, Drawing2D::FillMode) method

Draws a closed spline using the specified pen.

void System::Drawing::Graphics::DrawClosedCurve(const SharedPtr<Pen> &pen, const ArrayPtr<PointF> &points, float tension=0.5f, Drawing2D::FillMode fillmode=Drawing2D::FillMode::Alternate)

Arguments

ParameterTypeDescription
penconst SharedPtr<Pen>&A pen to use when drawing the spline
pointsconst ArrayPtr<PointF>&Array of points that determines the spline
tensionfloatValue that specifies the tension of the spline
fillmodeDrawing2D::FillModeIGNORED

See Also