Versions with this page:
Versions without this page:
Возвращает арк-тангенс f - угол в радианах, тангенс которого равен f.
f
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Atan(0.5F)); } }