mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-03 23:15:23 +00:00
21 lines
567 B
Markdown
21 lines
567 B
Markdown
## Sin
|
|
Return the sine of the parameter
|
|
|
|
### Declaration
|
|
```glsl
|
|
float sin(float angle)
|
|
vec2 sin(vec2 angle)
|
|
vec3 sin(vec3 angle)
|
|
vec4 sin(vec4 angle)
|
|
```
|
|
|
|
### Parameters
|
|
```angle``` specify the quantity, in radians, of which to return the sine.
|
|
|
|
### Description
|
|
```sin()``` returns the trigonometric sine of angle.
|
|
|
|
<div class="simpleFunction" data="y = sin(x); "></div>
|
|
|
|
### See Also
|
|
[acos](index.html#acos.md), [cos](index.html#cos.md), [asin](index.html#asin.md), [tan](index.html#tan.md), [atan](index.html#atan.md), [Chapter 05: Shaping Functions](../05/) |