度数到弧度的转换常数(只读)。
它等于 (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."); } }