Version: 2020.2
public static float Asin (float f);

描述

返回 f 的反正弦 - 其正弦为 f 的角度(以弧度为单位)。

using UnityEngine;

public class ScriptExample : MonoBehaviour { void Start() { print(Mathf.Asin(0.5f)); } }