thebookofshaders/glossary/length/README-vi.md

23 lines
522 B
Markdown
Raw Normal View History

## Length
2020-07-30 09:34:42 +00:00
Tính độ dài cuuar vector.
### Các phiên bản
```glsl
float length(float x)
float length(vec2 x)
float length(vec3 x)
float length(vec4 x)
```
### Các tham số
2020-07-30 09:34:42 +00:00
```x``` vector cần tính độ dài
### Mô tả
2020-07-30 09:34:42 +00:00
```length()``` trả về độ dài của vector.
<div class="codeAndCanvas" data="../07/circle-making.frag"></div>
### Tham khảo thêm
2020-07-30 09:34:42 +00:00
[distance()](/glossary/?lan=vi&search=distance), [normalize()](/glossary/?lan=vi&search=normalize), [Chương 07: Hình dạng](/07/?lan=vi)