参考链接:
https://zhidao.baidu.com/question/576596182.html
1.弧度和角度的转换
2.sin函数
3.cos函数
4.tan函数
5.特殊的三角函数值
6.测试
c#
1 using UnityEngine; 2 3 public class TestAngle : MonoBehaviour { 4 5 void Start () 6 { 7 Debug.Log(Mathf.Sin(Mathf.Deg2Rad * 30)); 8 Debug.Log(Mathf.Sin(Mathf.Deg2Rad * 90)); 9 Debug.Log(Mathf.Cos(Mathf.Deg2Rad * 60)); 10 Debug.Log(Mathf.Cos(Mathf.Deg2Rad * 180)); 11 Debug.Log(Mathf.Tan(Mathf.Deg2Rad * 45)); 12 Debug.Log(Mathf.Tan(Mathf.Deg2Rad * 135)); 13 } 14 }
输出如下:
lua