■ Vector 구조체를 사용해 벡터 각도를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
using System; using System.Windows; #region 각도 구하기 - GetDegree(vector) /// <summary> /// 각도 구하기 /// </summary> /// <param name="vector">벡터</param> /// <returns>각도</returns> public double GetDegree(Vector vector) { double degree = Math.Atan2(vector.X, vector.Y) * 180d / Math.PI; return degree; } #endregion |