Graphmath.Vec3.length
You're seeing just the function
length
, go back to Graphmath.Vec3 module for more information.
Link to this function
length(a)
Specs
length(a)
finds the length (Eucldiean or L2 norm) of a vec3
.
a
is the vec3
to find the length of.
It returns a float of the value (sqrt( a<sub>x</sub><sup>2</sup> + a<sub>y</sub><sup>2</sup> + a<sub>z</sub><sup>2</sup>)).