mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-01 21:40:27 +00:00
494 B
494 B
Length
Calculate the length of a vector
Declaration
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.