Matrix.Rotate(Double) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使這個 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;
}