mirror of
https://github.com/luanti-org/luanti.git
synced 2025-09-15 18:57:08 +00:00
Add vector.offset (#10321)
This commit is contained in:
parent
9976f36b18
commit
28e87ce9d5
3 changed files with 16 additions and 4 deletions
|
@ -137,6 +137,12 @@ function vector.divide(a, b)
|
|||
end
|
||||
end
|
||||
|
||||
function vector.offset(v, x, y, z)
|
||||
return {x = v.x + x,
|
||||
y = v.y + y,
|
||||
z = v.z + z}
|
||||
end
|
||||
|
||||
function vector.sort(a, b)
|
||||
return {x = math.min(a.x, b.x), y = math.min(a.y, b.y), z = math.min(a.z, b.z)},
|
||||
{x = math.max(a.x, b.x), y = math.max(a.y, b.y), z = math.max(a.z, b.z)}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue