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.
thebookofshaders/glossary/inversesqrt/README-vi.md

23 lines
606 B
Markdown

## Inversesqrt
Phép nghịch đảo căn bậc 2.
### Các phiên bản
```glsl
float inversesqrt(float x)
vec2 inversesqrt(vec2 x)
vec3 inversesqrt(vec3 x)
vec4 inversesqrt(vec4 x)
```
### Các tham số
```x``` số cần tính nghịch đảo căn bậc 2.
### Mô tả
```inversesqrt()``` trả về kết quả của biểu thức ```1 / sqrt(x)```.
<div class="simpleFunction" data="y = inversesqrt(x); "></div>
### Tham khảo thêm
[pow](/glossary/?lan=vi&search=pow), [sqrt](/glossary/?lan=vi&search=sqrt), [Các hàm số cơ bản (Hàm hình dạng - Shape function)](/05/?lan=vi)