다음을 통해 공유


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

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

구문

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

매개 변수

pen

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

points

닫힌 카디널 스플라인의 좌표를 지정하는 PointF 개체의 배열에 대한 포인터입니다. PointF 개체의 배열에는 최소 3개의 요소가 포함되어야 합니다.

count

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

반환 값

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

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

설명

각 끝점은 다음 카디널 스플라인의 시작점입니다. 닫힌 카디널 스플라인에서 곡선은 배열의 마지막 지점을 계속 진행하며 배열의 첫 번째 점과 연결됩니다.

예제

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

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

   // Define a Pen object and an array of PointF objects.
   Pen greenPen(Color(255, 0, 0, 255), 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 point5(600.0f, 200.0f);
   PointF point6(700.0f, 400.0f);
   PointF point7(500.0f, 500.0f);

   PointF curvePoints[7] = {
      point1,
      point2,
      point3,
      point4,
      point5,
      point6,
      point7};

   // Draw the closed curve.
   graphics.DrawClosedCurve(&greenPen, curvePoints, 7);

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

요구 사항

   
머리글 gdiplusgraphics.h

참고 항목

카디널 스플라인

DrawCurve 메서드

카디널 스플라인 그리기

FillClosedCurve 메서드

그래픽

Pointf