Matrix.Rotate(Double) メソッド

定義

この Matrix 構造体の原点を中心とする指定した角度の回転を適用します。

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

パラメーター

angle
Double

回転角度。

次の例では、 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; 
}

適用対象

こちらもご覧ください