Version: 2021.1
언어: 한국어
public static float Atan (float f);

설명

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)); } }