Graphics::D rawClosedCurve(constPen*,constPoint*,INT) (gdiplusgraphics.h)
El método Graphics::D rawClosedCurve dibuja una spline cardinal cerrada.
Sintaxis
Status DrawClosedCurve(
[in] const Pen *pen,
[in] const Point *points,
[in] INT count
);
Parámetros
[in] pen
Tipo: const Pen*
Puntero a un lápiz que se usa para dibujar la spline cardinal cerrada.
[in] points
Tipo: const Point*
Puntero a una matriz de objetos Point que especifican las coordenadas de la spline cardinal cerrada. La matriz de objetos Point debe contener un mínimo de tres elementos.
[in] count
Tipo: INT
Entero que especifica el número de elementos de la matriz de puntos .
Valor devuelto
Tipo: Estado
Si el método se ejecuta correctamente, devuelve Ok, que es un elemento de la enumeración Status .
Si se produce un error en el método, devuelve uno de los otros elementos de la enumeración Status .
Comentarios
En una spline cardinal cerrada, la curva continúa hasta el último punto de la matriz points y se conecta con el primer punto de la matriz.
Ejemplos
En el ejemplo siguiente se dibuja una spline cardinal cerrada.
VOID Example_DrawClosedCurve(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);
// 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));
}
Requisitos
Cliente mínimo compatible | Windows XP, Windows 2000 Professional [solo aplicaciones de escritorio] |
Servidor mínimo compatible | Windows 2000 Server [solo aplicaciones de escritorio] |
Plataforma de destino | Windows |
Encabezado | gdiplusgraphics.h (include Gdiplus.h) |
Library | Gdiplus.lib |
Archivo DLL | Gdiplus.dll |