Versions with this page:
Versions without this page:
Devuelve el arco seno de f - el ángulo en radianes cuyo seno es f.
f
using UnityEngine;public class ScriptExample : MonoBehaviour { void Start() { print(Mathf.Asin(0.5f)); } }