LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

This version of Unity is unsupported.

Mathf.Atan

public static float Atan(float f);

Description

Returns the arc-tangent of f - the angle in radians whose tangent is f.

using UnityEngine;

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