Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

Mathf.Asin

public static float Asin(float f);

Description

Returns the arc-sine of f - the angle in radians whose sine is f.

using UnityEngine;

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

Did you find this page useful? Please give it a rating: