public static float Atan (float f);

Description

Возвращает арк-тангенс f - угол в радианах, тангенс которого равен f.

using UnityEngine;

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