Mathf常用方法
Mathf.ClosePowerOfTwo(int i) 返回距离i最近的2的次方 6 返回8 1返回1 9返回8
Mathf.DeltaAngle(int r,intr2) 返回角r与角r2的最小夹角
500 与0 du 返回140
Mathf.Exp(int i) E的i次方
Mathf.floor(float f) 向下取整
max( []) min ([]) 取最大 取最小
pow(float f ,floatp) 获取 f的p次方
Sqrt(float f) 返回f的平方根