AddClosedCurve()

GraphicsPath::AddClosedCurve(const ArrayPtr<PointF>&, float) method

Adds the specified closed curve to the path represented by the current object.

void System::Drawing::Drawing2D::GraphicsPath::AddClosedCurve(const ArrayPtr<PointF> &points, float tension=0.5)

Arguments

ParameterTypeDescription
pointsconst ArrayPtr<PointF>&Points that specify the curve
tensionfloatSpecifies the amount that the curve bends between the control points

GraphicsPath::AddClosedCurve(const ArrayPtr<Point>&, float) method

Adds the specified closed curve to the path represented by the current object.

void System::Drawing::Drawing2D::GraphicsPath::AddClosedCurve(const ArrayPtr<Point> &points, float tension=0.5)

Arguments

ParameterTypeDescription
pointsconst ArrayPtr<Point>&Points that specify the curve
tensionfloatSpecifies the amount that the curve bends between the control points

See Also