1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-01 17:38:41 +00:00

Builtin: Add vector.floor helper function

This commit is contained in:
rubenwardy 2016-10-17 20:36:38 +01:00 committed by Ner'zhul
parent a291cd6132
commit 0d740c5d82
2 changed files with 10 additions and 2 deletions

View file

@ -31,6 +31,14 @@ function vector.normalize(v)
end
end
function vector.floor(v)
return {
x = math.floor(v.x),
y = math.floor(v.y),
z = math.floor(v.z)
}
end
function vector.round(v)
return {
x = math.floor(v.x + 0.5),
@ -130,4 +138,3 @@ function vector.divide(a, b)
z = a.z / b}
end
end