Graphics.DrawBezier

DrawBezier(Pen, PointF, PointF, PointF, PointF)

4 つの PointF 構造体で定義されたベジェ スプラインを描画します。

public void DrawBezier(Pen pen, PointF pt1, PointF pt2, PointF pt3, PointF pt4)
パラメータタイプ説明
penPen曲線の色、幅、スタイルを決定するペン。
pt1PointF曲線の始点を表す PointF 構造体。
pt2PointF曲線の最初の制御点を表す PointF 構造体。
pt3PointF曲線の 2 番目の制御点を表す PointF 構造体。
pt4PointF曲線の終点を表す PointF 構造体。

関連項目


DrawBezier(Pen, float, float, float, float, float, float, float, float)

点を表す 4 つの順序付けられた座標のペアによって定義されるベジエ スプラインを描画します。

public void DrawBezier(Pen pen, float x1, float y1, float x2, float y2, float x3, float y3, 
    float x4, float y4)
パラメータタイプ説明
penPen曲線の色、幅、スタイルを決定するペン。
x1Single曲線の始点の x 座標。
y1Single曲線の始点の y 座標。
x2Single曲線の最初の制御点の x 座標。
y2Single曲線の最初の制御点の y 座標。
x3Single曲線の 2 番目の制御点の x 座標。
y3Single曲線の 2 番目の制御点の y 座標。
x4Single曲線の終点の x 座標。
y4Single曲線の終点の y 座標。

関連項目