mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-11 13:10:57 +00:00
23 lines
635 B
Markdown
23 lines
635 B
Markdown
|
## Inversesqrt
|
||
|
Return the inverse of the square root of the parameter
|
||
|
|
||
|
### 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``` specify the value of which to take the inverse of the square root.
|
||
|
|
||
|
### Mô tả
|
||
|
```inversesqrt()``` returns the inverse of the square root of ```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)
|