Matrix.Rotate

Rotate(float)

これに追加Matrix原点を中心に、指定された角度だけ時計回りに回転します。

public void Rotate(float angle)
パラメータタイプ説明
angleSingle回転の角度 (度単位)。

関連項目


Rotate(float, MatrixOrder)

角度パラメーターで指定された量の時計回りの回転を、原点 (x 座標と y 座標がゼロ) の周りに適用します。Matrix.

public void Rotate(float angle, MatrixOrder order)
パラメータタイプ説明
angleSingle回転の角度 (度単位)。
orderMatrixOrderあMatrixOrderこれは、回転がこれに適用される順序 (追加または先頭に追加) を指定しますMatrix.

関連項目