System::Drawing::Graphics::FillClosedCurve 方法

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

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

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

另见

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

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

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

另见