mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-09 19:10:24 +00:00
21 lines
446 B
Markdown
21 lines
446 B
Markdown
|
## Log
|
||
|
Return the natural logarithm of the parameter
|
||
|
|
||
|
```glsl
|
||
|
float log(float x)
|
||
|
vec2 log(vec2 x)
|
||
|
vec3 log(vec3 x)
|
||
|
vec4 log(vec4 x)
|
||
|
```
|
||
|
|
||
|
### Parameters
|
||
|
```x``` Specify the value of which to take the natural logarithm.
|
||
|
|
||
|
### Description
|
||
|
```log()``` returns the natural logarithm of ```x```.
|
||
|
|
||
|
<div class="simpleFunction" data="y = log(x); "></div>
|
||
|
|
||
|
### See Also
|
||
|
|
||
|
[log2](index.html#log2.md), [exp](index.html#exp.md), [exp2](index.html#exp2.md)
|