Version: 2020.2
言語: 日本語
public static float Atan (float f);

説明

f のアークタンジェント (タンジェントの値が f になる、ラジアンで表された角度) を返します。

using UnityEngine;

public class ScriptExample : MonoBehaviour { void Start() { print(Mathf.Atan(0.5f)); } }