Graphics::D rawCurve(constPen*,constPointF*,INT,REAL) 메서드(gdiplusgraphics.h)
Graphics::D rawCurve 메서드는 카디널 스플라인을 그립니다.
구문
Status DrawCurve(
[in] const Pen *pen,
[in] const PointF *points,
[in] INT count,
[in] REAL tension
);
매개 변수
[in] pen
형식: const 펜*
카디널 스플라인을 그리는 데 사용되는 펜에 대한 포인터입니다.
[in] points
형식: const PointF*
카디널 스플라인에서 통과하는 좌표를 지정하는 PointF 개체의 배열에 대한 포인터입니다.
[in] count
형식: INT
점 배열의 요소 수를 지정하는 정수입니다.
[in] tension
형식: REAL
곡선이 카디널 스플라인의 좌표를 통해 얼마나 긴밀하게 구부러지는지를 지정하는 실수입니다.
반환 값
형식: 상태
메서드가 성공하면 Status 열거형의 요소인 확인을 반환합니다.
메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.
설명
세그먼트는 카디널 스플라인에서 연속된 두 점을 연결하는 곡선으로 정의됩니다. 각 세그먼트의 끝점은 다음 세그먼트의 시작점입니다.
예제
다음 예제에서는 카디널 스플라인을 그립니다.
VOID Example_DrawCurve6(HDC hdc)
{
Graphics graphics(hdc);
// Define a Pen object and an array of PointF 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, 1.0);
//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));
}
요구 사항
지원되는 최소 클라이언트 | Windows XP, Windows 2000 Professional [데스크톱 앱만 해당] |
지원되는 최소 서버 | Windows 2000 Server[데스크톱 앱만] |
대상 플랫폼 | Windows |
헤더 | gdiplusgraphics.h(Gdiplus.h 포함) |
라이브러리 | Gdiplus.lib |
DLL | Gdiplus.dll |