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

説明

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Atan(0.5F)); } }