Version: 2017.2
public static float Acos (float f);

説明

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Acos(0.5F)); } }