Returns the arc-tangent of f
- the angle in radians whose tangent is f
.
#pragma strict public class ScriptExample extends MonoBehaviour { function Start() { print(Mathf.Atan(0.5f)); } }
using UnityEngine;
public class ScriptExample : MonoBehaviour { void Start() { print(Mathf.Atan(0.5f)); } }