度到弧度换算常量(只读)。
这等于“(PI * 2) / 360”。
另请参阅:Rad2Deg 常量。
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour {
public float deg = 30.0F;
void Start() {
float rad = deg * Mathf.Deg2Rad;
Debug.Log(deg + "degrees are equal to " + rad + " radians.");
}
}