thebookofshaders/glossary/fract/README.md

22 lines
540 B
Markdown
Raw Normal View History

2015-04-17 18:16:45 +00:00
## Fract
Compute the fractional part of the argument
2015-04-18 14:41:34 +00:00
### Declaration
2015-04-17 18:16:45 +00:00
```glsl
float fract(float x)
vec2 fract(vec2 x)
vec3 fract(vec3 x)
vec4 fract(vec4 x)
```
### Parameters
2015-04-18 14:41:34 +00:00
```x``` specify the value to evaluate.
2015-04-17 18:16:45 +00:00
### Description
```fract()``` returns the fractional part of ```x```. This is calculated as ```x - floor(x)```.
<div class="simpleFunction" data="y = fract(x); "></div>
### See Also
2017-08-19 10:11:58 +00:00
[floor](/glossary/?search=floor), [ceil](/glossary/?search=ceil), [mod](/glossary/?search=mod), [Chapter 05: Shaping Functions](/05/)