Graphics::D rawClosedCurve (constPen*,constPoint*,INT,REAL) 方法 (gdiplusgraphics.h)
Graphics::D rawClosedCurve 方法绘制一条闭合的基数样条。
语法
Status DrawClosedCurve(
[in] const Pen *pen,
[in] const Point *points,
[in] INT count,
[in] REAL tension
);
参数
[in] pen
类型: const 触控笔*
指向用于绘制闭合基数样条的笔的指针。
[in] points
类型: const Point*
指向 Point 对象数组的指针,这些对象指定闭合基数样条的坐标。 Point 对象的数组必须至少包含三个元素。
[in] count
类型: INT
指定 点 数组中的元素数的整数。
[in] tension
类型: REAL
实数,指定曲线在闭合基样条的坐标中弯曲的紧密程度。
返回值
类型: 状态
如果方法成功,则返回 Ok,这是 Status 枚举的元素。
如果 方法失败,它将返回 Status 枚举的其他元素之一。
注解
每个终点都是下一个基数样条的起点。 在闭合的基数样条中,曲线继续穿过点数组中的最后一个 点 ,并与数组中的第一个点连接。
示例
以下示例绘制一个闭合的基数样条。
VOID Example_DrawClosedCurve2(HDC hdc)
{
Graphics graphics(hdc);
// Define a Pen object and an array of Point objects.
Pen greenPen(Color(255, 0, 0, 255), 3);
Point point1(100, 100);
Point point2(200, 50);
Point point3(400, 10);
Point point4(500, 100);
Point point5(600, 200);
Point point6(700, 400);
Point point7(500, 500);
Point curvePoints[7] = {
point1,
point2,
point3,
point4,
point5,
point6,
point7};
// Draw the closed curve.
graphics.DrawClosedCurve(&greenPen, curvePoints, 7, 1.0);
// 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));
}
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdiplusgraphics.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |