mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-10-31 21:33:02 +00:00
15 lines
347 B
Lua
15 lines
347 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
|
|
|
|
function worldeditadditions.vector.floor(v)
|
|
v.x = math.floor(v.x)
|
|
v.y = math.floor(v.y)
|
|
v.z = math.floor(v.z)
|
|
end
|