Acos(float)
Returns the arc-cosine of f - the angle in radians whose cosine is f.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static float Acos(float f)
Parameters
Returns
Type | Description |
|---|---|
| float |
Examples
using UnityEngine;public class ScriptExample : MonoBehaviour{ void Start() { print(Mathf.Acos(0.5f)); }}