thebookofshaders/glossary/log
2020-07-30 16:34:42 +07:00
..
README-vi.md Translate the glossary section 2020-07-30 16:34:42 +07:00
README.md Fix formatting for log documentation 2017-12-17 20:53:46 +00:00

Log

Return the natural logarithm of the parameter

Declaration

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.

See Also

log2, exp, exp2, Chapter 05: Shaping Functions