Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 529 Bytes

fract.md

File metadata and controls

21 lines (16 loc) · 529 Bytes

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