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 スプラインを決定する点の配列
テンション単精度浮動小数点数スプラインのテンションを指定する値

参照

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_tpoints 配列の最初の要素からのオフセット
numberOfSegmentsint32_t曲線に含めるセグメント数
テンション単精度浮動小数点数スプラインのテンションを指定する値

参照

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 スプラインを決定する点の配列
テンション単精度浮動小数点数スプラインのテンションを指定する値

参照

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_tpoints 配列の最初の要素からのオフセット
numberOfSegmentsint32_t曲線に含めるセグメント数
テンション単精度浮動小数点数スプラインのテンションを指定する値

参照