返回 f 的反余弦 - 其余弦为 f 的角度(以弧度为单位)。
f
using UnityEngine;public class ScriptExample : MonoBehaviour { void Start() { print(Mathf.Acos(0.5f)); } }