Partilhar via


Como: Desenhar uma sequência de Bézier Splines

Você pode usar o DrawBeziers método para o Graphics classe para desenhar uma sequência de splines Bézier conectados.

Exemplo

O exemplo a seguir desenha uma curva que consiste em dois splines Bézier conectados.O ponto de extremidade da spline de Bézier primeiro é o ponto inicial da segundo spline de Bézier.

A ilustração a seguir mostra os splines conectados juntamente com sete pontos.

' Point(10, 100) = start point of first spline
' Point(75, 10) = first control point of first spline
' Point(80, 50) = second control point of first spline

' Point(100, 150) = endpoint of first spline and start point of second spline

' Point(125, 80) = first control point of second spline
' Point(175, 200) = second control point of second spline
' Point(200, 80)} = endpoint of second spline
Dim p As Point() = { _
       New Point(10, 100), _
       New Point(75, 10), _
       New Point(80, 50), _
       New Point(100, 150), _
       New Point(125, 80), _
       New Point(175, 200), _
       New Point(200, 80)}

Dim pen As New Pen(Color.Blue)
e.Graphics.DrawBeziers(pen, p)

Point[] p = {
   new Point(10, 100),   // start point of first spline
   new Point(75, 10),    // first control point of first spline
   new Point(80, 50),    // second control point of first spline

   new Point(100, 150),  // endpoint of first spline and 
                         // start point of second spline

   new Point(125, 80),   // first control point of second spline
   new Point(175, 200),  // second control point of second spline
   new Point(200, 80)};  // endpoint of second spline

Pen pen = new Pen(Color.Blue);
e.Graphics.DrawBeziers(pen, p);

Compilando o código

The preceding example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler.

Consulte também

Conceitos

Splines Bézier no GDI +

Outros recursos

Elementos gráficos e desenho em formulários do Windows

Construindo e desenho de curvas