System::Drawing::Graphics::DrawClosedCurve 方法

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

使用指定的笔绘制闭合样条。

void System::Drawing::Graphics::DrawClosedCurve(const SharedPtr<Pen> &pen, const ArrayPtr<Point> &points, float tension=0.5f, Drawing2D::FillMode fillmode=Drawing2D::FillMode::Alternate)
参数类型描述
const SharedPtr<Pen>&用于绘制样条曲线的笔
pointsconst ArrayPtr<Point>&Array 用于确定样条曲线的点集合
张力float指定样条曲线张力的值
填充模式Drawing2D::FillModeIGNORED

另见

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

使用指定的笔绘制闭合样条。

void System::Drawing::Graphics::DrawClosedCurve(const SharedPtr<Pen> &pen, const ArrayPtr<PointF> &points, float tension=0.5f, Drawing2D::FillMode fillmode=Drawing2D::FillMode::Alternate)
参数类型描述
const SharedPtr<Pen>&用于绘制样条曲线的笔
pointsconst ArrayPtr<PointF>&Array 用于确定样条曲线的点集合
张力float指定样条曲线张力的值
填充模式Drawing2D::FillModeIGNORED

另见