다음을 통해 공유


Graphics::D rawCurve(constPen*,constPointF*,INT) 메서드(gdiplusgraphics.h)

Graphics::D rawCurve 메서드는 카디널 스플라인을 그립니다.

구문

Status DrawCurve(
  const Pen    *pen,
  const PointF *points,
  INT          count
);

매개 변수

pen

카디널 스플라인을 그리는 데 사용되는 펜에 대한 포인터입니다.

points

카디널 스플라인에서 통과하는 좌표를 지정하는 PointF 개체의 배열에 대한 포인터입니다.

count

배열의 요소 수를 지정하는 정수입니다.

반환 값

메서드가 성공하면 Status 열거형의 요소인 Ok를 반환합니다.

메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.

설명

세그먼트는 카디널 스플라인에서 연속된 두 점을 연결하는 곡선으로 정의됩니다. 각 세그먼트의 끝점은 다음 세그먼트의 시작점입니다.

예제

다음 예제에서는 카디널 스플라인을 그립니다.

VOID Example_DrawCurve4(HDC hdc)
{
   Graphics graphics(hdc);

   // Define a Pen object and an array of Point objects.
   Pen greenPen(Color::Green, 3);
   PointF point1(100.0f, 100.0f);
   PointF point2(200.0f, 50.0f);
   PointF point3(400.0f, 10.0f);
   PointF point4(500.0f, 100.0f); 

   PointF curvePoints[4] = {
   point1,
   point2,
   point3,
   point4};

   PointF* pcurvePoints = curvePoints;

   // Draw the curve.
   graphics.DrawCurve(&greenPen, curvePoints, 4);

   //Draw the points in the curve.
   SolidBrush redBrush(Color::Red);
   graphics.FillEllipse(&redBrush, Rect(95, 95, 10, 10));
   graphics.FillEllipse(&redBrush, Rect(195, 45, 10, 10));
   graphics.FillEllipse(&redBrush, Rect(395, 5, 10, 10));
   graphics.FillEllipse(&redBrush, Rect(495, 95, 10, 10));
}

요구 사항

   
머리글 gdiplusgraphics.h

참고 항목

카디널 스플라인

DrawClosedCurve 메서드

카디널 스플라인 그리기

그래픽

Pointf