Matrix.Rotate Método
Definição
Sobrecargas
| Rotate(Single) |
Preceda a isso Matrix uma rotação no sentido horário ao redor da origem e pelo ângulo especificado.Prepend to this Matrix a clockwise rotation, around the origin and by the specified angle. |
| Rotate(Single, MatrixOrder) |
Aplica uma rotação no sentido horário de um valor especificado no parâmetro |
Rotate(Single)
public:
void Rotate(float angle);
public void Rotate (float angle);
member this.Rotate : single -> unit
Public Sub Rotate (angle As Single)
Parâmetros
- angle
- Single
O ângulo de rotação, em graus.The angle of the rotation, in degrees.
Exemplos
Para ver um exemplo, consulte Rotate(Single, MatrixOrder).For an example, see Rotate(Single, MatrixOrder).
Aplica-se a
Rotate(Single, MatrixOrder)
public:
void Rotate(float angle, System::Drawing::Drawing2D::MatrixOrder order);
public void Rotate (float angle, System.Drawing.Drawing2D.MatrixOrder order);
member this.Rotate : single * System.Drawing.Drawing2D.MatrixOrder -> unit
Public Sub Rotate (angle As Single, order As MatrixOrder)
Parâmetros
- angle
- Single
O ângulo (extensão) de rotação, em graus.The angle (extent) of the rotation, in degrees.
- order
- MatrixOrder
Um MatrixOrder que especifica a ordem (suceder ou preceder) em que a rotação é aplicada a este Matrix.A MatrixOrder that specifies the order (append or prepend) in which the rotation is applied to this Matrix.
Exemplos
O exemplo de código a seguir foi projetado para uso com Windows Forms, e ele requer PaintEventArgs e um Paint objeto de evento.The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, an Paint event object. O código executa as seguintes ações:The code performs the following actions:
Desenha um retângulo na tela antes de aplicar uma transformação de rotação (o retângulo azul).Draws a rectangle to the screen prior to applying a rotation transform (the blue rectangle).
Cria uma matriz e gira 45 graus.Creates a matrix and rotates it 45 degrees.
Aplica essa transformação de matriz ao retângulo.Applies this matrix transform to the rectangle.
Desenha o retângulo transformado na tela (o retângulo vermelho).Draws the transformed rectangle to the screen (the red rectangle).
Observe que o retângulo vermelho foi girado em torno das coordenadas da tela 0, 0.Notice that the red rectangle has been rotated around the 0, 0 screen coordinates.
public:
void RotateExample( PaintEventArgs^ e )
{
Pen^ myPen = gcnew Pen( Color::Blue,1.0f );
Pen^ myPen2 = gcnew Pen( Color::Red,1.0f );
// Draw the rectangle to the screen before applying the transform.
e->Graphics->DrawRectangle( myPen, 150, 50, 200, 100 );
// Create a matrix and rotate it 45 degrees.
Matrix^ myMatrix = gcnew Matrix;
myMatrix->Rotate( 45, MatrixOrder::Append );
// Draw the rectangle to the screen again after applying the
// transform.
e->Graphics->Transform = myMatrix;
e->Graphics->DrawRectangle( myPen2, 150, 50, 200, 100 );
}
public void RotateExample(PaintEventArgs e)
{
Pen myPen = new Pen(Color.Blue, 1);
Pen myPen2 = new Pen(Color.Red, 1);
// Draw the rectangle to the screen before applying the transform.
e.Graphics.DrawRectangle(myPen, 150, 50, 200, 100);
// Create a matrix and rotate it 45 degrees.
Matrix myMatrix = new Matrix();
myMatrix.Rotate(45, MatrixOrder.Append);
// Draw the rectangle to the screen again after applying the
// transform.
e.Graphics.Transform = myMatrix;
e.Graphics.DrawRectangle(myPen2, 150, 50, 200, 100);
}
Public Sub RotateExample(ByVal e As PaintEventArgs)
Dim myPen As New Pen(Color.Blue, 1)
Dim myPen2 As New Pen(Color.Red, 1)
' Draw the rectangle to the screen before applying the transform.
e.Graphics.DrawRectangle(myPen, 150, 50, 200, 100)
' Create a matrix and rotate it 45 degrees.
Dim myMatrix As New Matrix
myMatrix.Rotate(45, MatrixOrder.Append)
' Draw the rectangle to the screen again after applying the
' transform.
e.Graphics.Transform = myMatrix
e.Graphics.DrawRectangle(myPen2, 150, 50, 200, 100)
End Sub