Mathf类
这是一个数学类Mathf,使用它可以轻松解决复杂的数学公式。提供了常用的数学运算。


void OnGUI()
{
GUILayout.Label( "Abs:"+ Mathf.Abs(-6.9f));
GUILayout.Label("Pow:"+Mathf.Pow(5,2));
GUILayout.Label("Sqrt:"+Mathf.Sqrt(6.9f));
GUILayout.Label("Clamp:"+Mathf.Clamp(6.9f,3f,9f));
GUILayout.Label("Floor:" + Mathf.Floor(6.9f));
GUILayout.Label("Ceil:" + Mathf.Ceil(6.9f));
GUILayout.Label("Round:"+Mathf.Round(6.9f));
GUILayout.Label("Min:"+Mathf.Min(6,45f,1f,8f,64f,14f,3f));
GUILayout.Label("sin:"+Mathf.Sin(45f)+"cos:"+Mathf.Cos(45f)+"tan:"+Mathf.Tan(45f));
}

网友评论