2015-04-17 04:52:51 +00:00
|
|
|
## Exp
|
|
|
|
Return the natural exponentiation of the parameter
|
|
|
|
|
2015-04-18 14:41:34 +00:00
|
|
|
### Declaration
|
2015-04-17 04:52:51 +00:00
|
|
|
```glsl
|
|
|
|
float exp(float x)
|
|
|
|
vec2 exp(vec2 x)
|
|
|
|
vec3 exp(vec3 x)
|
|
|
|
vec4 exp(vec4 x)
|
|
|
|
```
|
|
|
|
|
|
|
|
### Parameters
|
2015-04-18 14:41:34 +00:00
|
|
|
```x``` specify the value to exponentiate.
|
2015-04-17 04:52:51 +00:00
|
|
|
|
|
|
|
### Description
|
|
|
|
```exp()``` returns the natural exponentiation of ```x```.
|
|
|
|
|
|
|
|
<div class="simpleFunction" data="y = exp(x); "></div>
|
|
|
|
|
|
|
|
### See Also
|
|
|
|
|
2017-08-19 10:11:58 +00:00
|
|
|
[log](/glossary/?search=log), [log2](/glossary/?search=log2), [exp2](/glossary/?search=exp2), [Chapter 05: Shaping Functions](/05/)
|