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/exp2/README.md

22 lines
518 B
Markdown

10 years ago
## Exp2
Return 2 raised to the power of the parameter
### Declaration
10 years ago
```glsl
float exp2(float x)
vec2 exp2(vec2 x)
vec3 exp2(vec3 x)
vec4 exp2(vec4 x)
```
### Parameters
```x``` specify the value of the power to which 2 will be raised.
10 years ago
### Description
```exp2()``` returns 2 raised to the power of ```x```.
<div class="simpleFunction" data="y = exp2(x); "></div>
### See Also
[log](/glossary/?search=log), [log2](/glossary/?search=log2), [exp](/glossary/?search=exp), [Chapter 05: Shaping Functions](/05/)