mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-05 21:21:06 +00:00
513 B
513 B
Fract
Compute the fractional part of the argument
float fract(float x)
vec2 fract(vec2 x)
vec3 fract(vec3 x)
vec4 fract(vec4 x)
Parameters
x
Specify the value to evaluate.
Description
fract()
returns the fractional part of x
. This is calculated as x - floor(x)
.