Length
(Difference between revisions)
(Created page with "Returns the length of a 3d vector (sqrt(x*x + y*y + z*z)) : L = length(vec3(x, y, z))") |
Dahnielson (Talk | contribs) |
||
| Line 2: | Line 2: | ||
L = length(vec3(x, y, z)) | L = length(vec3(x, y, z)) | ||
| + | |||
| + | [[Category:Lua scripting]] | ||
Revision as of 17:57, 4 February 2014
Returns the length of a 3d vector (sqrt(x*x + y*y + z*z)) :
L = length(vec3(x, y, z))