2015-04-17 04:52:51 +00:00
|
|
|
## Asin
|
|
|
|
Return the arcsine of the parameter
|
|
|
|
|
2015-04-18 14:41:34 +00:00
|
|
|
### Declaration
|
2015-04-17 04:52:51 +00:00
|
|
|
```glsl
|
|
|
|
float asin(float x)
|
|
|
|
vec2 asin(vec2 x)
|
|
|
|
vec3 asin(vec3 x)
|
|
|
|
vec4 asin(vec4 x)
|
|
|
|
```
|
|
|
|
|
|
|
|
### Parameters
|
2015-04-18 14:41:34 +00:00
|
|
|
```x``` specify the value whose arcsine to return.
|
2015-04-17 04:52:51 +00:00
|
|
|
|
|
|
|
### Description
|
|
|
|
```asin()``` returns the angle whose trigonometric sine is ```x```.
|
|
|
|
|
|
|
|
<div class="simpleFunction" data="y = asin(x); "></div>
|
|
|
|
|
|
|
|
### See Also
|
2015-04-17 18:16:45 +00:00
|
|
|
[cos](index.html#cos.md), [sin](index.html#sin.md), [acos](index.html#acos.md), [tan](index.html#tan.md), [atan](index.html#atan.md), [Chapter 05: Shaping Functions](../05/)
|