Matrix.Rotate(Double) Methode

Definition

Wendet eine Drehung im angegebenen Winkel um den Ursprung dieser Matrix-Struktur an.

public:
 void Rotate(double angle);
public void Rotate (double angle);
member this.Rotate : double -> unit
Public Sub Rotate (angle As Double)

Parameter

angle
Double

Der Rotationswinkel.

Beispiele

Im folgenden Beispiel wird gezeigt, wie eine MatrixDrehung gedreht wird.

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; 
}

Gilt für

Siehe auch