Add floor division to hump.vector and hump.vector-light

This commit is contained in:
David Heyman 2018-05-23 11:13:51 -04:00
parent 9be68e9e10
commit aa81292733
2 changed files with 9 additions and 0 deletions

View File

@ -38,6 +38,10 @@ local function div(s, x,y)
return x/s, y/s
end
local function idiv(s, x,y)
return x//s, y//s
end
local function add(x1,y1, x2,y2)
return x1+x2, y1+y2
end

View File

@ -97,6 +97,11 @@ function vector.__div(a,b)
return new(a.x / b, a.y / b)
end
function vector.__idiv(a,b)
assert(isvector(a) and type(b) == "number", "wrong argument types (expected <vector> / <number>)")
return new(a.x // b, a.y // b)
end
function vector.__eq(a,b)
return a.x == b.x and a.y == b.y
end