Version: 2019.2
public static float Rad2Deg ;

説明

ラジアンから度に変換する定数(読み取り専用)

これは " 360/(PI * 2) " に等しいです。

関連項目: Deg2Rad 定数

using UnityEngine;

public class Example : MonoBehaviour { // convert 1 radian to degrees

float rad = 10.0f;

void Start() { float deg = rad * Mathf.Rad2Deg; Debug.Log(rad + " radians are equal to " + deg + " degrees."); } }