Returns the arc-cosine of f - the angle in radians whose cosine is f.
#pragma strict public class ScriptExample extends MonoBehaviour { function Start() { print(Mathf.Acos(0.5f)); } }
using UnityEngine;
public class ScriptExample : MonoBehaviour { void Start() { print(Mathf.Acos(0.5f)); } }