mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-10-31 21:33:02 +00:00
10 lines
229 B
Lua
10 lines
229 B
Lua
|
worldeditadditions.vector = {}
|
||
|
|
||
|
function worldeditadditions.vector.tostring(v)
|
||
|
return "(" .. v.x ..", " .. v.y ..", " .. v.z ..")"
|
||
|
end
|
||
|
|
||
|
function worldeditadditions.vector.lengthsquared(v)
|
||
|
return v.x*v.x + v.y*v.y + v.z*v.z
|
||
|
end
|