Matrix.Rotate(Double) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Applique une rotation d'un angle spécifié par rapport à l'origine de cette structure Matrix.
public:
void Rotate(double angle);
public void Rotate (double angle);
member this.Rotate : double -> unit
Public Sub Rotate (angle As Double)
Paramètres
- angle
- Double
Angle de rotation.
Exemples
L’exemple suivant montre comment faire pivoter un Matrix.
private Matrix rotateExample()
{
// Creating a Matrix structure.
Matrix myMatrix = new Matrix(5, 10, 15, 20, 25, 30);
// Rotate the matrix 90 degrees about the origin.
// myMatrix becomes equal to (-10, 5, -20, 15, -30, 25).
myMatrix.Rotate(90);
return myMatrix;
}