You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thebookofshaders/glossary/acos.md

21 lines
565 B
Markdown

10 years ago
## Acos
Return the arccosine of the parameter
### Declaration
10 years ago
```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.
10 years ago
### Description
```acos()``` returns the angle whose trigonometric cosine is ```x```.
<div class="simpleFunction" data="y = acos(x); "></div>
### See Also
[cos()](index.html#cos.md), [sin()](index.html#sin.md), [asin()](index.html#asin.md), [tan()](index.html#tan.md), [atan()](index.html#atan.md), [Chapter 05: Shaping Functions](../05/)