mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-11 13:10:57 +00:00
22 lines
553 B
Markdown
22 lines
553 B
Markdown
|
## Sign
|
||
|
Extract the sign of the parameter
|
||
|
|
||
|
### Các phiên bản
|
||
|
```glsl
|
||
|
float sign(float x)
|
||
|
vec2 sign(vec2 x)
|
||
|
vec3 sign(vec3 x)
|
||
|
vec4 sign(vec4 x)
|
||
|
```
|
||
|
|
||
|
### Các tham số
|
||
|
```x``` specify the value from which to extract the sign.
|
||
|
|
||
|
### Mô tả
|
||
|
```sign()``` returns -1.0 if x is less than 0.0, 0.0 if x is equal to 0.0, and +1.0 if x is greater than 0.0.
|
||
|
|
||
|
<div class="simpleFunction" data="y = sign(x); "></div>
|
||
|
|
||
|
### Tham khảo thêm
|
||
|
[abs](/glossary/?lan=vi&search=abs), [Các hàm số cơ bản (Hàm hình dạng - Shape function)](/05/?lan=vi)
|