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)
ParameterType描述
penconst SharedPtr<Pen>&绘制样条曲线时使用的画笔
pointsconst ArrayPtr<Point>&Array 用于确定样条曲线的点
张力单精度浮点数指定样条曲线张力的值
fillmodeDrawing2D::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)
ParameterType描述
penconst SharedPtr<Pen>&绘制样条曲线时使用的画笔
pointsconst ArrayPtr<PointF>&Array 用于确定样条曲线的点
张力单精度浮点数指定样条曲线张力的值
fillmodeDrawing2D::FillModeIGNORED

另见