Version: 2020.1
言語: 日本語
public static float Acos (float f);

説明

f のアークコサイン (コサインの値が f になる、ラジアンで表された角度) を返します。

using UnityEngine;

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