■ Matrix 클래스의 M11 속성을 사용해 회전 변환의 회전 각도를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 |
using System; using System.Windows.Media; Matrix rotateMatrix = new RotateTransform(45).Value; double rotateAngle = 180 * Math.Acos(rotateMatrix.M11) / Math.PI; |