thebookofshaders/glossary/tan/README-vi.md

22 lines
685 B
Markdown
Raw Normal View History

## Tan
Return the tangent of the parameter
### Các phiên bản
```glsl
float tan(float angle)
vec2 tan(vec2 angle)
vec3 tan(vec3 angle)
vec4 tan(vec4 angle)
```
### Các tham số
```angle``` specify the quantity, in radians, of which to return the tangent.
### Mô tả
```tan()``` returns the trigonometric tangent of angle.
<div class="simpleFunction" data="y = tan(x); "></div>
### Tham khảo thêm
[cos](/glossary/?lan=vi&search=cos), [acos](/glossary/?lan=vi&search=acos), [sin](/glossary/?lan=vi&search=sin), [asin](/glossary/?lan=vi&search=asin), [atan](/glossary/?lan=vi&search=atan), [Các hàm số cơ bản (Hàm hình dạng - Shape function)](/05/?lan=vi)