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.
Manoylov Andriy eb8d3c5f80 add ukrainian translation 10 months ago
..
README-ua.md add ukrainian translation 10 months ago
README-vi.md Translate the glossary section 4 years ago
README.md Remove trailing whitespaces 7 years ago

README.md

Fract

Compute the fractional part of the argument

Declaration

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).

See Also

floor, ceil, mod, Chapter 05: Shaping Functions