Version: 2022.3
言語: 日本語
public static float Rad2Deg ;

説明

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

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

関連項目: Deg2Rad 定数

using UnityEngine;

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

float rad = 1.0f;

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