Versions with this page:
Versions without this page:
Devuelve el arco coseno de f - el ángulo en radianes cuyo coseno es f .
f
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Acos(0.5F)); } }