Graphics::D rawBezier(constPen*,constPointF&,constPointF&,constPointF&,constPointF&) メソッド (gdiplusgraphics.h)
Graphics::D rawBezier メソッドは、ベジエ スプラインを描画します。
構文
Status DrawBezier(
[in] const Pen *pen,
[in, ref] const PointF & pt1,
[in, ref] const PointF & pt2,
[in, ref] const PointF & pt3,
[in, ref] const PointF & pt4
);
パラメーター
[in] pen
型: const Pen*
ベジエ スプラインの描画に使用されるペンへのポインター。
[in, ref] pt1
型: const POINTF
ベジエ スプラインの始点への参照。
[in, ref] pt2
型: const POINTF
ベジエ スプラインの最初の制御点への参照。
[in, ref] pt3
型: const POINTF
ベジエ スプラインの 2 番目の制御点への参照。
[in, ref] pt4
型: const POINTF
ベジエ スプラインの終点への参照。
戻り値
型: 状態
メソッドが成功した場合は、ok を返します。これは、Status 列挙体の要素です。
メソッドが失敗した場合は、Status 列挙体の他の要素のいずれかを返します。
備考
ベジエ スプラインは、コントロール ポイントを通過しません。 コントロール ポイントは磁石として機能し、ベジエ スプラインの曲げ方に影響を与えるために曲線を特定の方向に引っ張ります。
例
次の例では、ベジエ曲線を描画します。
VOID Example_DrawBezier2(HDC hdc)
{
Graphics graphics(hdc);
// Set up the pen and curve points.
Pen greenPen(Color(255, 0, 255, 0));
PointF startPoint(100.0f, 100.0f);
PointF controlPoint1(200.0f, 10.0f);
PointF controlPoint2(350.0f, 50.0f);
PointF endPoint(500.0f, 100.0f);
//Draw the curve.
graphics.DrawBezier(&greenPen, startPoint, controlPoint1, controlPoint2, endPoint);
//Draw the end points and control points.
SolidBrush redBrush(Color(255, 255, 0, 0));
SolidBrush blueBrush(Color(255, 0, 0, 255));
graphics.FillEllipse(&redBrush, 100 - 5, 100 - 5, 10, 10);
graphics.FillEllipse(&redBrush, 500 - 5, 100 - 5, 10, 10);
graphics.FillEllipse(&blueBrush, 200 - 5, 10 - 5, 10, 10);
graphics.FillEllipse(&blueBrush, 350 - 5, 50 - 5, 10, 10);
}
必要条件
要件 | 価値 |
---|---|
サポートされる最小クライアント | Windows XP、Windows 2000 Professional [デスクトップ アプリのみ] |
サポートされる最小サーバー | Windows 2000 Server [デスクトップ アプリのみ] |
ターゲット プラットフォーム の |
ウィンドウズ |
ヘッダー | gdiplusgraphics.h (Gdiplus.h を含む) |
ライブラリ | Gdiplus.lib |
DLL | Gdiplus.dll |
関連項目
DrawBezier を
ベジエ スプライン の描画