2020-07-30 07:03:05 +00:00
## Fract
2020-07-30 09:34:42 +00:00
Tách phần thập phân của số thực.
2020-07-30 07:03:05 +00:00
### Các phiên bản
```glsl
float fract(float x)
vec2 fract(vec2 x)
vec3 fract(vec3 x)
vec4 fract(vec4 x)
```
### Các tham số
2020-07-30 09:34:42 +00:00
```x``` số thực cần tách phần thập phân.
2020-07-30 07:03:05 +00:00
### Mô tả
2020-07-30 09:34:42 +00:00
```fract()``` trả về phần thập phân của ```x``` theo công thức ```x - floor(x)```.
2020-07-30 07:03:05 +00:00
< div class = "simpleFunction" data = "y = fract(x); " > < / div >
### Tham khảo thêm
[floor ](/glossary/?lan=vi&search=floor ), [ceil ](/glossary/?lan=vi&search=ceil ), [mod ](/glossary/?lan=vi&search=mod ), [Các hàm số cơ bản (Hàm hình dạng - Shape function) ](/05/?lan=vi )