Versions with this page:
Versions without this page:
Returns the arc-cosine of f - the angle in radians whose cosine is f.
f
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Acos(0.5F)); } }