mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-11 13:10:57 +00:00
24 lines
620 B
Markdown
24 lines
620 B
Markdown
|
## Sqrt
|
||
|
Return the square root of the parameter
|
||
|
|
||
|
### Các phiên bản
|
||
|
```glsl
|
||
|
float sqrt(float x)
|
||
|
vec2 sqrt(vec2 x)
|
||
|
vec3 sqrt(vec3 x)
|
||
|
vec4 sqrt(vec4 x)
|
||
|
```
|
||
|
|
||
|
### Các tham số
|
||
|
```x``` specify the value of which to take the square root.
|
||
|
|
||
|
### Mô tả
|
||
|
```sqrt()``` returns the square root of ```x```.
|
||
|
|
||
|
<div class="simpleFunction" data="y = sqrt(x); "></div>
|
||
|
|
||
|
<div class="codeAndCanvas" data="../07/circle-making.frag"></div>
|
||
|
|
||
|
### Tham khảo thêm
|
||
|
[inversesqrt](/glossary/?lan=vi&search=inversesqrt), [pow](/glossary/?lan=vi&search=pow), [Các hàm số cơ bản (Hàm hình dạng - Shape function)](/05/?lan=vi)
|