Version: 2018.2
public static float Atan (float f);

説明

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

using UnityEngine;

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