mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-08 01:10:27 +00:00
22 lines
584 B
Markdown
22 lines
584 B
Markdown
## Acos
|
|
Return the arccosine of the parameter
|
|
|
|
### Declaration
|
|
```glsl
|
|
float acos(float x)
|
|
vec2 acos(vec2 x)
|
|
vec3 acos(vec3 x)
|
|
vec4 acos(vec4 x)
|
|
```
|
|
|
|
### Parameters
|
|
```x``` specify the value whose arccosine to return.
|
|
|
|
### Description
|
|
```acos()``` returns the angle whose trigonometric cosine is ```x```.
|
|
|
|
<div class="simpleFunction" data="y = acos(x); "></div>
|
|
|
|
### See Also
|
|
[cos()](/glossary/?search=cos), [sin()](/glossary/?search=sin), [asin()](/glossary/?search=asin), [tan()](/glossary/?search=tan), [atan()](/glossary/?search=atan), [Chapter 05: Shaping Functions](/05/)
|