System::Drawing::Graphics::DrawCurve 方法

Graphics::DrawCurve(const SharedPtr<Pen>&, const ArrayPtr<Point>&, float) method

使用指定的笔绘制样条。

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

另见

Graphics::DrawCurve(const SharedPtr<Pen>&, const ArrayPtr<Point>&, int32_t, int32_t, float) method

使用指定的笔绘制样条。

void System::Drawing::Graphics::DrawCurve(const SharedPtr<Pen> &pen, const ArrayPtr<Point> &points, int32_t offset, int32_t numberOfSegments, float tension=0.5f)
参数类型描述
const SharedPtr<Pen>&用于绘制样条曲线的笔
pointsconst ArrayPtr<Point>&Array 用于确定样条曲线的点集合
offsetint32_t相对于 points 数组中第一个元素的偏移量
numberOfSegmentsint32_t要包含在曲线中的段数
张力float指定样条曲线张力的值

另见

Graphics::DrawCurve(const SharedPtr<Pen>&, const ArrayPtr<PointF>&, float) method

使用指定的笔绘制样条。

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

另见

Graphics::DrawCurve(const SharedPtr<Pen>&, const ArrayPtr<PointF>&, int32_t, int32_t, float) method

使用指定的笔绘制样条。

void System::Drawing::Graphics::DrawCurve(const SharedPtr<Pen> &pen, const ArrayPtr<PointF> &points, int32_t offset, int32_t numberOfSegments, float tension=0.5f)
参数类型描述
const SharedPtr<Pen>&用于绘制样条曲线的笔
pointsconst ArrayPtr<PointF>&Array 用于确定样条曲线的点集合
offsetint32_t相对于 points 数组中第一个元素的偏移量
numberOfSegmentsint32_t要包含在曲线中的段数
张力float指定样条曲线张力的值

另见