Graphmath.Vec3.length_manhattan
You're seeing just the function
length_manhattan
, go back to Graphmath.Vec3 module for more information.
Link to this function
length_manhattan(a)
Specs
length_manhattan(a)
finds the Manhattan (L1 norm) length of a vec3
.
a
is the vec3
to find the Manhattan length of.
It returns a float of the value (a<sub>x</sub> + a<sub>y</sub> + a<sub>z</sub>).
The Manhattan length is the sum of the components.