このページを含むバージョン:
このページを含まないバージョン:
f のアークタンジェント (タンジェントの値が f になる、ラジアンで表された角度) を返します。
f
using UnityEngine;public class ScriptExample : MonoBehaviour { void Start() { print(Mathf.Atan(0.5f)); } }