mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-08 01:10:27 +00:00
23 lines
501 B
Markdown
23 lines
501 B
Markdown
## Length
|
|
Calculate the length of a vector
|
|
|
|
### Declaration
|
|
```glsl
|
|
float length(float x)
|
|
float length(vec2 x)
|
|
float length(vec3 x)
|
|
float length(vec4 x)
|
|
```
|
|
|
|
### Parameters
|
|
```x``` specifies a vector of which to calculate the length.
|
|
|
|
### Description
|
|
```length()``` returns the length of the vector.
|
|
|
|
<div class="codeAndCanvas" data="../07/circle-making.frag"></div>
|
|
|
|
### See Also
|
|
|
|
[distance()](/glossary/?search=distance), [normalize()](/glossary/?search=normalize), [Chapter 07: Shapes](/07/)
|