thebookofshaders/glossary/cos.md

21 lines
571 B
Markdown
Raw Normal View History

2015-04-17 04:52:51 +00:00
## Cos
Return the cosine of the parameter
2015-04-18 14:41:34 +00:00
### Declaration
2015-04-17 04:52:51 +00:00
```glsl
float cos(float angle)
vec2 cos(vec2 angle)
vec3 cos(vec3 angle)
vec4 cos(vec4 angle)
```
### Parameters
2015-04-18 14:41:34 +00:00
```angle``` specify the quantity, in radians, of which to return the cosine.
2015-04-17 04:52:51 +00:00
### Description
```cos()``` returns the trigonometric sine of angle.
<div class="simpleFunction" data="y = cos(x); "></div>
### See Also
2015-04-17 18:16:45 +00:00
[acos](index.html#acos.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/)