PathGradientBrush.RotateTransform Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Aplica uma rotação no sentido horário do ângulo especificado à transformação geométrica local.
Sobrecargas
RotateTransform(Single) |
Gira a transformação geométrica local pela quantidade especificada. Esse método prepara a rotação para a transformação. |
RotateTransform(Single, MatrixOrder) |
Gira a transformação geométrica local pela quantidade especificada na ordem especificada. |
RotateTransform(Single)
- Origem:
- PathGradientBrush.cs
- Origem:
- PathGradientBrush.cs
- Origem:
- PathGradientBrush.cs
- Origem:
- PathGradientBrush.cs
- Origem:
- PathGradientBrush.cs
Gira a transformação geométrica local pela quantidade especificada. Esse método prepara a rotação para a transformação.
public:
void RotateTransform(float angle);
public void RotateTransform (float angle);
member this.RotateTransform : single -> unit
Public Sub RotateTransform (angle As Single)
Parâmetros
- angle
- Single
O ângulo (extensão) da rotação.
Exemplos
Para obter um exemplo, consulte RotateTransform.
Aplica-se a
RotateTransform(Single, MatrixOrder)
- Origem:
- PathGradientBrush.cs
- Origem:
- PathGradientBrush.cs
- Origem:
- PathGradientBrush.cs
- Origem:
- PathGradientBrush.cs
- Origem:
- PathGradientBrush.cs
Gira a transformação geométrica local pela quantidade especificada na ordem especificada.
public:
void RotateTransform(float angle, System::Drawing::Drawing2D::MatrixOrder order);
public void RotateTransform (float angle, System.Drawing.Drawing2D.MatrixOrder order);
member this.RotateTransform : single * System.Drawing.Drawing2D.MatrixOrder -> unit
Public Sub RotateTransform (angle As Single, order As MatrixOrder)
Parâmetros
- angle
- Single
O ângulo (extensão) da rotação.
- order
- MatrixOrder
Um MatrixOrder que especifica se a matriz de rotação deve ser acrescentada ou anexada.
Exemplos
O exemplo de código a seguir foi projetado para uso com o Windows Forms e requer PaintEventArgse
, um objeto de evento OnPaint. O código executa as seguintes ações:
Cria um caminho gráfico e adiciona um retângulo a ele.
Cria uma PathGradientBrush dos pontos de caminho (neste exemplo, os pontos formam um retângulo, mas pode ser a maioria de qualquer forma).
Define a cor central como vermelho e a cor ao redor como azul.
Desenha o PathGradientBrush na tela antes de aplicar a transformação de rotação.
Aplica a transformação de rotação ao pincel usando seu método RotateTransform.
Desenha o pincel girado (retângulo) para a tela.
Observe que o retângulo inferior é girado 45 graus em comparação com o desenhado antes da tradução.
public:
void RotateTransformExample( PaintEventArgs^ e )
{
// Create a graphics path and add an ellipse.
GraphicsPath^ myPath = gcnew GraphicsPath;
Rectangle rect = Rectangle(100,20,100,50);
myPath->AddRectangle( rect );
// Get the path's array of points.
array<PointF>^myPathPointArray = myPath->PathPoints;
// Create a path gradient brush.
PathGradientBrush^ myPGBrush = gcnew PathGradientBrush( myPathPointArray );
// Set the color span.
myPGBrush->CenterColor = Color::Red;
array<Color>^ mySurroundColor = {Color::Blue};
myPGBrush->SurroundColors = mySurroundColor;
// Draw the brush to the screen prior to transformation.
e->Graphics->FillRectangle( myPGBrush, 10, 10, 200, 200 );
// Apply the rotate transform to the brush.
myPGBrush->RotateTransform( 45, MatrixOrder::Append );
// Draw the brush to the screen again after applying the
// transform.
e->Graphics->FillRectangle( myPGBrush, 10, 10, 200, 300 );
}
public void RotateTransformExample(PaintEventArgs e)
{
// Create a graphics path and add an ellipse.
GraphicsPath myPath = new GraphicsPath();
Rectangle rect = new Rectangle(100, 20, 100, 50);
myPath.AddRectangle(rect);
// Get the path's array of points.
PointF[] myPathPointArray = myPath.PathPoints;
// Create a path gradient brush.
PathGradientBrush myPGBrush = new
PathGradientBrush(myPathPointArray);
// Set the color span.
myPGBrush.CenterColor = Color.Red;
Color[] mySurroundColor = {Color.Blue};
myPGBrush.SurroundColors = mySurroundColor;
// Draw the brush to the screen prior to transformation.
e.Graphics.FillRectangle(myPGBrush, 10, 10, 200, 200);
// Apply the rotate transform to the brush.
myPGBrush.RotateTransform(45, MatrixOrder.Append);
// Draw the brush to the screen again after applying the
// transform.
e.Graphics.FillRectangle(myPGBrush, 10, 10, 200, 300);
}
Public Sub RotateTransformExample(ByVal e As PaintEventArgs)
' Create a graphics path and add a rectangle.
Dim myPath As New GraphicsPath
Dim rect As New Rectangle(100, 20, 100, 50)
myPath.AddRectangle(rect)
' Get the path's array of points.
Dim myPathPointArray As PointF() = myPath.PathPoints
' Create a path gradient brush.
Dim myPGBrush As New PathGradientBrush(myPathPointArray)
' Set the color span.
myPGBrush.CenterColor = Color.Red
Dim mySurroundColor As Color() = {Color.Blue}
myPGBrush.SurroundColors = mySurroundColor
' Draw the brush to the screen prior to transformation.
e.Graphics.FillRectangle(myPGBrush, 10, 10, 200, 200)
' Apply the rotate transform to the brush.
myPGBrush.RotateTransform(45, MatrixOrder.Append)
' Draw the brush to the screen again after applying the
' transform.
e.Graphics.FillRectangle(myPGBrush, 10, 10, 200, 300)
End Sub