mirror of
https://github.com/vrld/hump.git
synced 2024-11-23 12:24:19 +00:00
parent
3ac246dd33
commit
0dea46b0b5
@ -38,10 +38,6 @@ local function div(s, x,y)
|
|||||||
return x/s, y/s
|
return x/s, y/s
|
||||||
end
|
end
|
||||||
|
|
||||||
local function idiv(s, x,y)
|
|
||||||
return x//s, y//s
|
|
||||||
end
|
|
||||||
|
|
||||||
local function add(x1,y1, x2,y2)
|
local function add(x1,y1, x2,y2)
|
||||||
return x1+x2, y1+y2
|
return x1+x2, y1+y2
|
||||||
end
|
end
|
||||||
|
@ -97,11 +97,6 @@ function vector.__div(a,b)
|
|||||||
return new(a.x / b, a.y / b)
|
return new(a.x / b, a.y / b)
|
||||||
end
|
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)
|
function vector.__eq(a,b)
|
||||||
return a.x == b.x and a.y == b.y
|
return a.x == b.x and a.y == b.y
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user