mirror of
https://github.com/vrld/hump.git
synced 2024-11-23 12:24:19 +00:00
157 lines
4.1 KiB
Lua
157 lines
4.1 KiB
Lua
--[[
|
|
Copyright (c) 2010 Matthias Richter
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
Except as contained in this notice, the name(s) of the above copyright holders
|
|
shall not be used in advertising or otherwise to promote the sale, use or
|
|
other dealings in this Software without prior written authorization.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
]]--
|
|
|
|
local setmetatable, getmetatable = setmetatable, getmetatable
|
|
local assert, type, tonumber = assert, type, tonumber
|
|
local sqrt, cos, sin = math.sqrt, math.cos, math.sin
|
|
module(...)
|
|
|
|
local vector = {}
|
|
vector.__index = vector
|
|
|
|
function new(x,y)
|
|
local v = {x = x or 0, y = y or 0}
|
|
setmetatable(v, vector)
|
|
return v
|
|
end
|
|
|
|
function isvector(v)
|
|
return getmetatable(v) == vector
|
|
end
|
|
|
|
function vector:clone()
|
|
return new(self.x, self.y)
|
|
end
|
|
|
|
function vector:unpack()
|
|
return self.x, self.y
|
|
end
|
|
|
|
function vector:__tostring()
|
|
return "("..tonumber(self.x)..","..tonumber(self.y)..")"
|
|
end
|
|
|
|
function vector.__unm(a)
|
|
return new(-a.x, -a.y)
|
|
end
|
|
|
|
function vector.__add(a,b)
|
|
assert(isvector(a) and isvector(b), "Add: wrong argument types (<vector> expected)")
|
|
return new(a.x+b.x, a.y+b.y)
|
|
end
|
|
|
|
function vector.__sub(a,b)
|
|
assert(isvector(a) and isvector(b), "Sub: wrong argument types (<vector> expected)")
|
|
return new(a.x-b.x, a.y-b.y)
|
|
end
|
|
|
|
function vector.__mul(a,b)
|
|
if type(a) == "number" then
|
|
return new(a*b.x, a*b.y)
|
|
elseif type(b) == "number" then
|
|
return new(b*a.x, b*a.y)
|
|
else
|
|
assert(isvector(a) and isvector(b), "Mul: wrong argument types (<vector> or <number> expected)")
|
|
return a.x*b.x + a.y*b.y
|
|
end
|
|
end
|
|
|
|
function vector.__div(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
|
|
|
|
function vector.__lt(a,b)
|
|
return a.x < b.x or (a.x == b.x and a.y < b.y)
|
|
end
|
|
|
|
function vector.__le(a,b)
|
|
return a.x <= b.x and a.y <= b.y
|
|
end
|
|
|
|
function vector.permul(a,b)
|
|
assert(isvector(a) and isvector(b), "permul: wrong argument types (<vector> expected)")
|
|
return new(a.x*b.x, a.y*b.y)
|
|
end
|
|
|
|
function vector:len2()
|
|
return self * self
|
|
end
|
|
|
|
function vector:len()
|
|
return sqrt(self*self)
|
|
end
|
|
|
|
function vector.dist(a, b)
|
|
assert(isvector(a) and isvector(b), "dist: wrong argument types (<vector> expected)")
|
|
return (b-a):len()
|
|
end
|
|
|
|
function vector:normalize_inplace()
|
|
local l = self:len()
|
|
self.x, self.y = self.x / l, self.y / l
|
|
return self
|
|
end
|
|
|
|
function vector:normalized()
|
|
return self / self:len()
|
|
end
|
|
|
|
function vector:rotate_inplace(phi)
|
|
local c, s = cos(phi), sin(phi)
|
|
self.x, self.y = c * self.x - s * self.y, s * self.x + c * self.y
|
|
return self
|
|
end
|
|
|
|
function vector:rotated(phi)
|
|
return self:clone():rotate_inplace(phi)
|
|
end
|
|
|
|
function vector:perpendicular()
|
|
return new(-self.y, self.x)
|
|
end
|
|
|
|
function vector:projectOn(v)
|
|
assert(isvector(v), "invalid argument: cannot project onto anything other than a new.")
|
|
return (self * v) * v / v:len2()
|
|
end
|
|
|
|
function vector:cross(other)
|
|
assert(isvector(other), "cross: wrong argument types (<vector> expected)")
|
|
return self.x * other.y - self.y * other.x
|
|
end
|
|
|
|
-- vector() as shortcut to vector.new()
|
|
do
|
|
local m = {}
|
|
m.__call = function(_, ...) return new(...) end
|
|
setmetatable(_M, m)
|
|
end
|